Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

new_class_id: better constructs for the Executor.

File:
1 edited

Legend:

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

    r9733 r9734  
    140140      : Executor<CallType>(false)
    141141  {
    142     this->functionType = Executor<CallType>::FunctionDefault;
    143142    this->functionPointer = functionPointer;
    144143  };
     
    185184      : Executor<CallType>(false, ExecutorParamType<type0>())
    186185  {
    187     this->functionType = Executor<CallType>::FunctionDefault;
    188186    this->functionPointer = functionPointer;
    189187  };
     
    229227      : Executor<CallType>(false, ExecutorParamType<type0>(), ExecutorParamType<type1>())
    230228  {
    231     this->functionType = Executor<CallType>::FunctionDefault;
    232229    this->functionPointer = functionPointer;
    233230  };
     
    275272      : Executor<CallType>(false, ExecutorParamType<type0>(), ExecutorParamType<type1>(), ExecutorParamType<type2>())
    276273  {
    277     this->functionType = Executor<CallType>::FunctionDefault;
    278274    this->functionPointer = functionPointer;
    279275  };
     
    323319      : Executor<CallType>(false, ExecutorParamType<type0>(), ExecutorParamType<type1>(), ExecutorParamType<type2>(), ExecutorParamType<type3>())
    324320  {
    325     this->functionType = Executor<CallType>::FunctionDefault;
    326321    this->functionPointer = functionPointer;
    327322  };
     
    372367      : Executor<CallType>(false, ExecutorParamType<type0>(), ExecutorParamType<type1>(), ExecutorParamType<type2>(), ExecutorParamType<type3>(), ExecutorParamType<type4>())
    373368  {
    374     this->functionType = Executor<CallType>::FunctionDefault;
    375369    this->functionPointer = functionPointer;
    376370  };
Note: See TracChangeset for help on using the changeset viewer.