Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8408 in orxonox.OLD for trunk/src/lib/util/executor/executor_lua.h


Ignore:
Timestamp:
Jun 14, 2006, 5:50:18 PM (19 years ago)
Author:
bensch
Message:

trunk: merged the script_engine branche back here
merged with command
svn merge https://svn.orxonox.net/orxonox/branches/script_engine . -r8284:HEAD
no conflicts

File:
1 edited

Legend:

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

    r8271 r8408  
    1414
    1515
    16 template<typename type> type fromLua(lua_State* state, int index) { PRINTF(1)("NOT IMPLEMENTED\n"); };
     16template<typename type> type fromLua(lua_State* state, int index);
    1717template<> bool fromLua<bool>(lua_State* state, int index);
    1818template<> int fromLua<int>(lua_State* state, int index);
     
    2323
    2424
    25 template<typename type> void toLua(lua_State* state, type value) { PRINTF(1)("NOT IMPLEMENTED\n"); };
     25template<typename type> void toLua(lua_State* state, type value);
    2626template<> void toLua<bool>(lua_State* state, bool value);
    2727template<> void toLua<int>(lua_State* state, int value);
     
    339339};
    340340
    341 
    342 
    343 
    344 
    345 
    346 
    347341#endif /* _EXECUTOR_LUA_H */
Note: See TracChangeset for help on using the changeset viewer.