Changeset 8408 in orxonox.OLD for trunk/src/lib/util/executor/executor_lua.h
- Timestamp:
- Jun 14, 2006, 5:50:18 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/executor/executor_lua.h
r8271 r8408 14 14 15 15 16 template<typename type> type fromLua(lua_State* state, int index) { PRINTF(1)("NOT IMPLEMENTED\n"); };16 template<typename type> type fromLua(lua_State* state, int index); 17 17 template<> bool fromLua<bool>(lua_State* state, int index); 18 18 template<> int fromLua<int>(lua_State* state, int index); … … 23 23 24 24 25 template<typename type> void toLua(lua_State* state, type value) { PRINTF(1)("NOT IMPLEMENTED\n"); };25 template<typename type> void toLua(lua_State* state, type value); 26 26 template<> void toLua<bool>(lua_State* state, bool value); 27 27 template<> void toLua<int>(lua_State* state, int value); … … 339 339 }; 340 340 341 342 343 344 345 346 347 341 #endif /* _EXECUTOR_LUA_H */
Note: See TracChangeset
for help on using the changeset viewer.