summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2014-09-28 17:12:59 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2014-09-28 17:12:59 +0200
commit4a4b43fa3cf1bd379ee1eb53223d63fa0358bcc5 (patch)
tree491130594993459ee80f199f061b20fa7c89f333 /include
parent1b53904e4e7d596bc50dbddb17a101cf23ee8b6d (diff)
downloadcrawler-4a4b43fa3cf1bd379ee1eb53223d63fa0358bcc5.tar.gz
crawler-4a4b43fa3cf1bd379ee1eb53223d63fa0358bcc5.tar.bz2
some lua work
Diffstat (limited to 'include')
-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