Parkmanne/headers/data.h

14 lines
246 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 {
2019-07-02 00:18:52 +00:00
SQLite::Database start_db();
2019-07-02 00:51:23 +00:00
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