Parkmanne/headers/data.h

14 lines
245 B
C
Raw Normal View History

2019-06-29 22:59:48 +00:00
#ifndef DATA_H
#define DATA_H
#pragma once
2019-06-26 18:12:23 +00:00
#include "../thirdparty/SQLiteCpp/include/SQLiteCpp/SQLiteCpp.h"
#include "encrypt.h"
2019-06-26 18:12:23 +00:00
namespace data {
SQLite::Database
start_db();
2019-06-29 22:59:48 +00:00
static SQLite::Database db = start_db();
} // namespace data
2019-06-29 22:59:48 +00:00
#endif