Parkmanne/headers/data.h
2019-06-29 19:59:48 -03:00

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