Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Nov 19, 2005, 12:16:12 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: valgrind sweep

File:
1 edited

Legend:

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

    r5641 r5642  
    4444    /** @returns the Type of this Function (either static or objective) */
    4545    inline Executor_Type getType() const { return this->functorType; };
     46    /** @returns the Count of Parameters this Executor takes */
     47    inline unsigned int getParamCount() const { return this->paramCount; };
    4648
    4749    static void debug();
     
    5456
    5557  protected:
    56     Executor_Type                    functorType;                          //!< The type of Function we've got (either static or objective).
    57     unsigned int                     paramCount;                           //!< the count of parameters.
    58     MultiType*                       defaultValue;                         //!< Default Values.
     58    Executor_Type                    functorType;      //!< The type of Function we've got (either static or objective).
     59    unsigned int                     paramCount;       //!< the count of parameters.
     60    MultiType*                       defaultValue;     //!< Default Values.
    5961};
    6062
Note: See TracChangeset for help on using the changeset viewer.