Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 15, 2006, 3:17:55 PM (18 years ago)
Author:
bensch
Message:

cleaned out useless non-portable stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/util/executor/executor.h

    r9730 r9732  
    1818  Executor_Static,
    1919} Executor_Type;
     20
     21//! The maximum Count of Arguments of the Executor
     22/** This is Hardcoded, for each Executor. */
     23#define EXECUTOR_MAX_ARGUMENTS                7
    2024
    2125
     
    4650{
    4751public:
    48   //    virtual bool operator==(const Executor* executor) const = 0;
    49 
    5052  /** @param i the i'th defaultValue, @returns reference to the MultiType */
    5153  inline MultiType& getDefaultValue(unsigned int i) { return defaultValue[i]; };
     
    8385  MultiType                   defaultValue[7];  //!< Default Values.
    8486
     87private:
    8588  const bool                  bRetVal;          //!< True if the Executor has a return Value.
     89  const bool                  bStaticFunction;  //!< A Executor to a Static Function
     90  const bool                  bConstFunction;   //!< A Executor to a Constant Function
    8691};
    8792
Note: See TracChangeset for help on using the changeset viewer.