- Timestamp:
- Oct 1, 2006, 11:13:29 AM (18 years ago)
- Location:
- branches/new_class_id/src/lib
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/coord/p_node.cc
r9790 r9859 88 88 if (deleteNode == last) 89 89 { 90 PRINTF(1)("Node same as last that was tried to be deleted. FORCE deleteof %p\n", deleteNode);91 delete deleteNode;90 PRINTF(1)("Node same as last that was tried to be deleted. FORCE reparent to NULL of %p\n", deleteNode); 91 (deleteNode->setParent( NULL)); 92 92 continue; 93 93 } -
branches/new_class_id/src/lib/lang/Makefile.am
r9730 r9859 1 MAINSRCDIR=../.. 2 include $(MAINSRCDIR)/defs/include_paths.am 1 INCLUDES = -I../.. 2 INCLUDES +=-I.. 3 INCLUDES +=-I../util 3 4 4 5 noinst_LIBRARIES = libORXlang.a … … 13 14 class_id.h \ 14 15 object_list.h 15 -
branches/new_class_id/src/lib/lang/base_object.cc
r9809 r9859 17 17 #include "base_object.h" 18 18 19 #include "de bug.h"19 #include "defs/debug.h" 20 20 #include "util/loading/load_param.h" 21 21 -
branches/new_class_id/src/lib/lang/base_object.h
r9807 r9859 15 15 16 16 #include "object_list.h" 17 #include " sigslot/slot.h"17 #include "util/sigslot/slot.h" 18 18 19 19 #include <string> -
branches/new_class_id/src/lib/util/loading/load_param.cc
r9779 r9859 16 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_LOADING 17 17 18 #include " util/loading/load_param.h"18 #include "load_param.h" 19 19 #include "load_param_class_description.h" 20 20 #include "compiler.h" -
branches/new_class_id/src/lib/util/loading/load_param.h
r9855 r9859 22 22 #define _LOAD_PARAM_H 23 23 24 #include " executor/executor_substring.h"25 #include " executor/executor_member.h"26 #include " executor/functor_member.h"24 #include "util/executor/executor_substring.h" 25 #include "util/executor/executor_member.h" 26 #include "util/executor/functor_member.h" 27 27 28 28 #include "parser/tinyxml/tinyxml.h"
Note: See TracChangeset
for help on using the changeset viewer.