Changeset 5656 in orxonox.OLD for trunk/src/lib/event
- Timestamp:
- Nov 20, 2005, 9:45:28 PM (19 years ago)
- Location:
- trunk/src/lib/event
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/event/command_chain.cc
r5461 r5656 430 430 unsigned int fktPos = 1; //< the position of the function (needed for finding it) 431 431 // long completeType = SHELLC_NONE; //< the Type we'd like to complete. 432 SubString inputSplits(executionString, true);432 SubString inputSplits(executionString, " \n\t,"); 433 433 434 434 if (inputSplits.getCount() == 0) -
trunk/src/lib/event/command_chain.h
r5461 r5656 360 360 virtual void executeCommand (BaseObject* object, const char* parameters) 361 361 { 362 SubString sub(parameters, true);362 SubString sub(parameters, " \n\t,"); 363 363 //! FUNCTOR_LIST is the List of Executive Functions 364 364 #define FUNCTOR_LIST(x) CommandChainExecute ## x
Note: See TracChangeset
for help on using the changeset viewer.