Changeset 9662 in orxonox.OLD for trunk/src/lib/lang
- Timestamp:
- Aug 20, 2006, 12:23:09 PM (18 years ago)
- Location:
- trunk/src/lib/lang
- Files:
-
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/lang/new_object_list.cc
r9661 r9662 16 16 //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ 17 17 18 #include "new_ class_list.h"18 #include "new_object_list.h" 19 19 #include <cassert> 20 20 -
trunk/src/lib/lang/new_object_list.h
r9661 r9662 1 1 /*! 2 * @file new_ class_list.h2 * @file new_object_list.h 3 3 * @brief Definition of a dynamically allocating ClassID 4 4 * 5 5 */ 6 6 7 #ifndef _NEW_ CLASS_LIST_H8 #define _NEW_ CLASS_LIST_H7 #ifndef _NEW_OBJECT_LIST_H 8 #define _NEW_OBJECT_LIST_H 9 9 10 10 #include "type_info.h" … … 16 16 17 17 #define DeclareInClass(ClassName) \ 18 NewObjectList classList(ClassName)18 NewObjectList objectList(ClassName) 19 19 20 20 class NewObjectListBase … … 73 73 74 74 75 #endif /* _NEW_ CLASS_LIST_H */75 #endif /* _NEW_OBJECT_LIST_H */
Note: See TracChangeset
for help on using the changeset viewer.