Parkmanne/headers/data.h
2019-07-01 21:51:23 -03:00

14 lines
246 B
C++

#ifndef DATA_H
#define DATA_H
#pragma once
#include "../thirdparty/SQLiteCpp/include/SQLiteCpp/SQLiteCpp.h"
#include "encrypt.h"
namespace data {
SQLite::Database start_db();
static SQLite::Database db = start_db();
} // namespace data
#endif