diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/LuaSQL.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/LuaSQL.h b/include/LuaSQL.h new file mode 100644 index 0000000..bec0260 --- /dev/null +++ b/include/LuaSQL.h @@ -0,0 +1,17 @@ +#ifndef __LUASQL_H__ +#define __LUASQL_H__ + +#include <Exceptions.h> +#include <SQL.h> +#include <BLua.h> + +class LuaSQLConnection : public LuaObject { + public: + static void pushstatics(Lua *) throw (GeneralException); + LuaSQLConnection(SQLConnection *); + protected: + virtual void pushmembers(Lua *); + SQLConnection * c; +}; + +#endif |