mirror of
https://github.com/tnodir/fort
synced 2024-11-17 18:35:59 +00:00
12 lines
163 B
C
12 lines
163 B
C
|
#ifndef SQLITEENGINE_H
|
||
|
#define SQLITEENGINE_H
|
||
|
|
||
|
class SqliteEngine
|
||
|
{
|
||
|
public:
|
||
|
static void initialize();
|
||
|
static void shutdown();
|
||
|
};
|
||
|
|
||
|
#endif // SQLITEENGINE_H
|