Parkmanne/headers/data.h
TinyAtoms bf17b82c2e Added constructors to construct from db info
This is in no way finished. CHECK TODOs!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
2019-06-30 00:37:18 -03:00

12 lines
223 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();
} // namespace data
#endif