Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5656 in orxonox.OLD for trunk/src/lib/event


Ignore:
Timestamp:
Nov 20, 2005, 9:45:28 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: new Version of the String-splitter (without Escape-sequence for the time being)

Location:
trunk/src/lib/event
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/event/command_chain.cc

    r5461 r5656  
    430430  unsigned int fktPos = 1;                //< the position of the function (needed for finding it)
    431431//  long completeType = SHELLC_NONE;      //< the Type we'd like to complete.
    432   SubString inputSplits(executionString, true);
     432  SubString inputSplits(executionString, " \n\t,");
    433433
    434434  if (inputSplits.getCount() == 0)
  • trunk/src/lib/event/command_chain.h

    r5461 r5656  
    360360    virtual void executeCommand (BaseObject* object, const char* parameters)
    361361    {
    362       SubString sub(parameters, true);
     362      SubString sub(parameters, " \n\t,");
    363363//! FUNCTOR_LIST is the List of Executive Functions
    364364#define FUNCTOR_LIST(x) CommandChainExecute ## x
Note: See TracChangeset for help on using the changeset viewer.