mirror of
https://github.com/tnodir/fort
synced 2024-11-18 01:16:53 +00:00
14 lines
170 B
C++
14 lines
170 B
C++
|
#include "sqliteengine.h"
|
||
|
|
||
|
#include "sqlite3.h"
|
||
|
|
||
|
void SqliteEngine::initialize()
|
||
|
{
|
||
|
sqlite3_initialize();
|
||
|
}
|
||
|
|
||
|
void SqliteEngine::shutdown()
|
||
|
{
|
||
|
sqlite3_shutdown();
|
||
|
}
|