Changeset 10051 in orxonox.OLD for branches/mount_points/src/lib
- Timestamp:
- Dec 12, 2006, 11:54:07 PM (18 years ago)
- Location:
- branches/mount_points/src/lib/graphics/importer
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mount_points/src/lib/graphics/importer/Makefile.am
r10050 r10051 27 27 \ 28 28 oif/object_information_file.cc \ 29 oif/resource_oif.cc \ 29 30 \ 30 31 bsp/bsp_manager.cc \ … … 82 83 \ 83 84 oif/object_information_file.h \ 85 oif/resource_oif.h \ 84 86 \ 85 87 md2/md2Model.h \ -
branches/mount_points/src/lib/graphics/importer/oif/object_information_file.cc
r10050 r10051 18 18 #include "object_information_file.h" 19 19 20 20 #include "resource_oif.h" 21 21 22 22 … … 25 25 * @todo this constructor is not jet implemented - do it 26 26 */ 27 ObjectInformationFile::ObjectInformationFile( float sizeX, float sizeY, unsigned int rows, unsigned int columns)27 ObjectInformationFile::ObjectInformationFile() 28 28 { 29 this->data = ResourceOIF("adsf").data; 30 29 31 } 30 32 -
branches/mount_points/src/lib/graphics/importer/oif/object_information_file.h
r10050 r10051 9 9 #include "vertex_array_model.h" 10 10 11 #include "count_pointer.h" 11 12 13 14 //! A class for object informations 15 class OIFData : BaseObject 16 { 17 public: 18 typedef CountPointer<OIFData> Pointer; 19 20 public: 21 OIFData(); 22 virtual ~OIFData(); 23 24 25 26 private: 27 28 }; 12 29 13 30 //! A class for object informations … … 22 39 23 40 private: 41 CountPointer<OIFData> data; //!< the oif data pointer 24 42 25 43 };
Note: See TracChangeset
for help on using the changeset viewer.