Changeset 8101 in orxonox.OLD for branches/script_engine/src/lib/util/executor
- Timestamp:
- Jun 1, 2006, 7:24:22 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/script_engine/src/lib/util/executor/executor_lua.h
r8098 r8101 75 75 return new ExecutorLua0<T>(ExecutorLua0<T>(this->functionPointer)); 76 76 } 77 private: 78 void (T::*functionPointer)(); 77 79 }; 78 80 … … 122 124 return new ExecutorLua1<T, type0>((this->functionPointer)); 123 125 } 126 private: 127 void (T::*functionPointer)(type0); 124 128 }; 125 129 … … 171 175 return new ExecutorLua2<T, type0, type1>(this->functionPointer); 172 176 } 177 private: 178 void (T::*functionPointer)(type0, type1); 173 179 }; 174 180 … … 227 233 return new ExecutorLua0ret<T, ret>(this->functionPointer); 228 234 } 235 private: 236 ret (T::*functionPointer)(); 229 237 }; 230 238 … … 275 283 return new ExecutorLua1ret<T, ret, type0>(this->functionPointer); 276 284 } 285 private: 286 ret (T::*functionPointer)(type0); 277 287 }; 278 288 … … 322 332 return new ExecutorLua2ret<T, ret, type0, type1>(this->functionPointer); 323 333 } 334 private: 335 ret (T::*functionPointer)(type0, type1); 324 336 }; 325 337
Note: See TracChangeset
for help on using the changeset viewer.