12 lines
206 B
C++
12 lines
206 B
C++
#ifndef DATA_H
|
|
#define DATA_H
|
|
#pragma once
|
|
#include "../thirdparty/SQLiteCpp/include/SQLiteCpp/SQLiteCpp.h"
|
|
namespace data {
|
|
SQLite::Database start_db();
|
|
static SQLite::Database db = start_db();
|
|
|
|
|
|
}
|
|
|
|
#endif |