blob: bec0260035d82a1bcb4eaf122093807dcef09da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|