Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8048 in orxonox.OLD for trunk/src/lib/util/executor/executor.h


Ignore:
Timestamp:
May 31, 2006, 11:10:17 PM (18 years ago)
Author:
bensch
Message:

trunk: prepare for the new Executor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/util/executor/executor.h

    r8035 r8048  
    5353    // EXECUTE
    5454    /** executes a Command. @param objec the Object, @param count how many values, @param values the Values */
    55     virtual void operator()(BaseObject* object, unsigned int count, const MultiType* values) const = 0;
     55    virtual void operator()(BaseObject* object, unsigned int count, void* values) const = 0;
    5656    /** executes a Command @param object the object to apply this to @param parameters the parameters the command takes */
    5757    virtual void operator()(BaseObject* object, const SubString& sub = SubString()) const = 0;
    58     /** executes a Command @param object the object to apply this to @param parameters the parameters the command takes @brief here for your convenience*/
    59     void execute (BaseObject* object, const std::string& parameters = "") const { (*this)(object, parameters); };
    60 
    6158
    6259    // RETRIEVE INFORMATION
Note: See TracChangeset for help on using the changeset viewer.