diff options
Diffstat (limited to 'src/libjin-lua/common/l_reference.h')
-rw-r--r-- | src/libjin-lua/common/l_reference.h | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/src/libjin-lua/common/l_reference.h b/src/libjin-lua/common/l_reference.h index 1a62dba..4c4756f 100644 --- a/src/libjin-lua/common/l_reference.h +++ b/src/libjin-lua/common/l_reference.h @@ -5,50 +5,50 @@ namespace JinEngine { - namespace Lua - { - - /// - /// This class wraps the reference functionality built into Lua, which allows C++ code to refer to Lua - /// variables. - /// - class LuaRef - { - public: - /// - /// - /// - LuaRef(lua_State* L, int i); - - /// - /// - /// - ~LuaRef(); - - /// - /// - /// - void unref(); - - /// - /// Push value onto the stack. - /// - void push(); - - private: - /// - /// - /// - lua_State* const mL; - - /// - /// - /// - int mIndex; - - }; - - } // namespace Lua + namespace Lua + { + + /// + /// This class wraps the reference functionality built into Lua, which allows C++ code to refer to Lua + /// variables. + /// + class LuaRef + { + public: + /// + /// + /// + LuaRef(lua_State* L, int i); + + /// + /// + /// + ~LuaRef(); + + /// + /// + /// + void unref(); + + /// + /// Push value onto the stack. + /// + void push(); + + private: + /// + /// + /// + lua_State* const mL; + + /// + /// + /// + int mIndex; + + }; + + } // namespace Lua } // namespace JinEngine #endif // __JIN_COMMON_REFERENCE_H
\ No newline at end of file |