Changeset 9716 in orxonox.OLD for branches/new_class_id/src/lib/lang
- Timestamp:
- Sep 1, 2006, 8:16:15 PM (18 years ago)
- Location:
- branches/new_class_id/src/lib/lang
- Files:
-
- 3 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/lang/Makefile.am
r9684 r9716 9 9 libORXlang_a_SOURCES = \ 10 10 base_object.cc \ 11 new_class_id.cc \12 new_object_list.cc11 class_id.cc \ 12 object_list.cc 13 13 14 14 noinst_HEADERS = \ 15 15 base_object.h \ 16 new_class_id.h \17 new_object_list.h16 class_id.h \ 17 object_list.h 18 18 19 19 -
branches/new_class_id/src/lib/lang/base_object.h
r9715 r9716 14 14 #define __BASE_OBJECT_H_ 15 15 16 #include " new_object_list.h"16 #include "object_list.h" 17 17 #include "sigslot/slot.h" 18 18 -
branches/new_class_id/src/lib/lang/class_id.cc
r9715 r9716 16 16 //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ 17 17 18 #include " new_class_id.h"19 #include " new_object_list.h"18 #include "class_id.h" 19 #include "object_list.h" 20 20 21 21 /** -
branches/new_class_id/src/lib/lang/class_id.h
r9715 r9716 1 1 /*! 2 * @file new_class_id.h2 * @file class_id.h 3 3 * @brief Definition of a dynamically allocating ClassID 4 4 * 5 5 */ 6 6 7 #ifndef _ NEW_CLASS_ID_H8 #define _ NEW_CLASS_ID_H7 #ifndef _CLASS_ID_H 8 #define _CLASS_ID_H 9 9 10 10 #include <string> … … 74 74 }; 75 75 76 #endif /* _ NEW_CLASS_ID_H */76 #endif /* _CLASS_ID_H */ -
branches/new_class_id/src/lib/lang/object_list.cc
r9715 r9716 16 16 //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ 17 17 18 #include " new_object_list.h"18 #include "object_list.h" 19 19 #include <cassert> 20 20 -
branches/new_class_id/src/lib/lang/object_list.h
r9715 r9716 1 1 /*! 2 * @file new_object_list.h2 * @file object_list.h 3 3 * @brief Definition of a dynamically allocating ClassID 4 4 * 5 5 */ 6 6 7 #ifndef _ NEW_OBJECT_LIST_H8 #define _ NEW_OBJECT_LIST_H9 10 #include " new_class_id.h"7 #ifndef _OBJECT_LIST_H 8 #define _OBJECT_LIST_H 9 10 #include "class_id.h" 11 11 #include <cassert> 12 12 #include <map> … … 331 331 } 332 332 333 #endif /* _ NEW_OBJECT_LIST_H */333 #endif /* _OBJECT_LIST_H */ -
branches/new_class_id/src/lib/lang/test_object_list.cc
r9715 r9716 1 #include " new_class_id.h"2 #include " new_object_list.h"1 #include "class_id.h" 2 #include "object_list.h" 3 3 #include <iostream> 4 4
Note: See TracChangeset
for help on using the changeset viewer.