Changeset 9715 in orxonox.OLD for branches/new_class_id/src/world_entities/elements
- Timestamp:
- Sep 1, 2006, 8:06:39 PM (18 years ago)
- Location:
- branches/new_class_id/src/world_entities/elements
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/world_entities/elements/image_entity.cc
r9709 r9715 31 31 32 32 #include "class_id.h" 33 NewObjectListDefinitionID(ImageEntity, CL_IMAGE_ENTITY);33 ObjectListDefinitionID(ImageEntity, CL_IMAGE_ENTITY); 34 34 CREATE_FACTORY(ImageEntity); 35 35 -
branches/new_class_id/src/world_entities/elements/image_entity.h
r9709 r9715 21 21 //! A class that enables the 22 22 class ImageEntity : public PNode, public Element2D { 23 NewObjectListDeclaration(ImageEntity);23 ObjectListDeclaration(ImageEntity); 24 24 25 25 public: -
branches/new_class_id/src/world_entities/elements/text_element.cc
r9709 r9715 28 28 29 29 #include "class_id.h" 30 NewObjectListDefinitionID(TextElement, CL_TEXT_ELEMENT);30 ObjectListDefinitionID(TextElement, CL_TEXT_ELEMENT); 31 31 CREATE_FACTORY(TextElement); 32 32 -
branches/new_class_id/src/world_entities/elements/text_element.h
r9709 r9715 21 21 //! A class that enables the 22 22 class TextElement : public Text { 23 NewObjectListDeclaration(TextElement);23 ObjectListDeclaration(TextElement); 24 24 25 25 public:
Note: See TracChangeset
for help on using the changeset viewer.