WIP refractoring

This commit is contained in:
TinyAtoms
2019-06-29 19:59:48 -03:00
parent 8160f84e20
commit a606119626
9 changed files with 27 additions and 17 deletions

View File

@ -1,6 +1,12 @@
#ifndef DATA_H
#define DATA_H
#pragma once
#include "../thirdparty/SQLiteCpp/include/SQLiteCpp/SQLiteCpp.h"
#include "Customer.h"
namespace data {
SQLite::Database start_db();
static SQLite::Database db = start_db();
}
#endif