Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8101 in orxonox.OLD for branches/script_engine/src/lib/util/executor


Ignore:
Timestamp:
Jun 1, 2006, 7:24:22 PM (19 years ago)
Author:
bensch
Message:

EXECUTOR USED

File:
1 edited

Legend:

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

    r8098 r8101  
    7575      return new ExecutorLua0<T>(ExecutorLua0<T>(this->functionPointer));
    7676    }
     77  private:
     78    void          (T::*functionPointer)();
    7779};
    7880
     
    122124      return new ExecutorLua1<T, type0>((this->functionPointer));
    123125    }
     126  private:
     127    void          (T::*functionPointer)(type0);
    124128};
    125129
     
    171175      return new ExecutorLua2<T, type0, type1>(this->functionPointer);
    172176    }
     177  private:
     178    void          (T::*functionPointer)(type0, type1);
    173179};
    174180
     
    227233      return new ExecutorLua0ret<T, ret>(this->functionPointer);
    228234    }
     235  private:
     236    ret           (T::*functionPointer)();
    229237};
    230238
     
    275283      return new ExecutorLua1ret<T, ret, type0>(this->functionPointer);
    276284    }
     285  private:
     286    ret           (T::*functionPointer)(type0);
    277287};
    278288
     
    322332      return new ExecutorLua2ret<T, ret, type0, type1>(this->functionPointer);
    323333    }
     334  private:
     335    ret           (T::*functionPointer)(type0, type1);
    324336};
    325337
Note: See TracChangeset for help on using the changeset viewer.