- Timestamp:
- Nov 22, 2005, 12:21:45 AM (19 years ago)
- Location:
- trunk/src
- Files:
-
- 8 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Makefile.am
r5674 r5691 116 116 defs/compiler.h \ 117 117 defs/class_id.h \ 118 defs/functor_list.h \119 118 subprojects/benchmark.h 120 119 -
trunk/src/Makefile.in
r5674 r5691 311 311 defs/compiler.h \ 312 312 defs/class_id.h \ 313 defs/functor_list.h \314 313 subprojects/benchmark.h 315 314 -
trunk/src/lib/Makefile.am
r5674 r5691 60 60 util/multi_type.h \ 61 61 util/executor/executor.h \ 62 util/executor/executor_specials.h \ 63 util/executor/functor_list.h \ 62 64 math/matrix.h \ 63 65 math/vector.h \ -
trunk/src/lib/Makefile.in
r5674 r5691 250 250 util/multi_type.h \ 251 251 util/executor/executor.h \ 252 util/executor/executor_specials.h \ 253 util/executor/functor_list.h \ 252 254 math/matrix.h \ 253 255 math/vector.h \ -
trunk/src/lib/util/executor/executor.h
r5690 r5691 42 42 43 43 /** executes a Command @param object the object to apply this to @param parameters the parameters the command takes */ 44 virtual void execute (BaseObject* object, const void* parameters ) = 0;44 virtual void execute (BaseObject* object, const void* parameters = NULL) = 0; 45 45 46 46 /** @returns the Type of this Function (either static or objective) */ … … 261 261 } fp; 262 262 263 virtual void execute (BaseObject* object, const void* parameters )263 virtual void execute (BaseObject* object, const void* parameters = NULL) 264 264 { 265 265 SubString sub((const char*) parameters, " \n\t,", '\\'); … … 323 323 324 324 325 virtual void execute (BaseObject* object, const void* parameters )325 virtual void execute (BaseObject* object, const void* parameters = NULL) 326 326 { 327 327 SubString sub((const char*)parameters, " \n\t,"); -
trunk/src/lib/util/executor/executor_specials.h
r5690 r5691 59 59 * @param loadString ignored in this case 60 60 */ 61 virtual void execute(BaseObject* object, const void* loadString)61 virtual void execute(BaseObject* object, const void* parameters = NULL) 62 62 { 63 63 if (object != NULL && this->element != NULL) -
trunk/src/util/loading/load_param.cc
r5671 r5691 15 15 16 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_LOADING 17 18 #include "functor_list.h"19 17 20 18 #include "load_param.h" -
trunk/src/util/loading/load_param_description.cc
r5634 r5691 16 16 #include "load_param_description.h" 17 17 18 #include "multi_type.h" 18 19 #include "list.h" 19 20 #include <stdarg.h> 20 21 #include "stdlibincl.h" 21 #include "functor_list.h"22 23 22 /** 24 23 * @param paramName the name of the parameter to load
Note: See TracChangeset
for help on using the changeset viewer.