Changeset 5656 in orxonox.OLD for trunk/src/lib/util/executor
- Timestamp:
- Nov 20, 2005, 9:45:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/executor/executor.h
r5652 r5656 38 38 virtual Executor* clone () const = 0; 39 39 40 Executor* defaultValues(unsigned int count, va_list values); 40 41 Executor* defaultValues(unsigned int count, ...); 41 Executor* defaultValues(unsigned int count, va_list values);42 42 43 43 /** executes a Command @param object the object to apply this to @param parameters the parameters the command takes */ … … 56 56 57 57 void cloning(Executor* executor) const; 58 59 // const SubString& getSubString(const char* string) const { return SubString(string); }; 58 60 59 61 protected: … … 261 263 virtual void execute (BaseObject* object, const char* parameters) 262 264 { 263 SubString sub(parameters, ','); /// FIXME ///265 SubString sub(parameters, " \n\t,", '\\'); 264 266 //! FUNCTOR_LIST is the List of Executive Functions 265 267 #define FUNCTOR_LIST(x) ExecutorExecute ## x … … 323 325 virtual void execute (BaseObject* object, const char* parameters) 324 326 { 325 SubString sub(parameters, true);327 SubString sub(parameters, " \n\t,"); 326 328 //! FUNCTOR_LIST is the List of Executive Functions 327 329 #define FUNCTOR_LIST(x) ExecutorExecute ## x
Note: See TracChangeset
for help on using the changeset viewer.