summaryrefslogtreecommitdiff
path: root/include/luaglue/LuaVM.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/luaglue/LuaVM.hpp')
-rwxr-xr-xinclude/luaglue/LuaVM.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/luaglue/LuaVM.hpp b/include/luaglue/LuaVM.hpp
new file mode 100755
index 0000000..7449b3f
--- /dev/null
+++ b/include/luaglue/LuaVM.hpp
@@ -0,0 +1,19 @@
+#ifndef __LUA_VM_H
+#define __LUA_VM_H
+
+#include "lua.hpp"
+
+class LuaVM
+{
+ public:
+ LuaVM( );
+ ~LuaVM( );
+
+ private:
+ void initialize( );
+
+ private:
+ lua_State *m_lua;
+};
+
+#endif