mirror of
https://github.com/tnodir/fort
synced 2024-11-17 23:35:31 +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();
|
|
}
|