Parkmanne/headers/data.h
MassiveAtoms db78ecd9cc Found cryptography library that was very easy to install.
Have hashing and verification functs ready.
2019-06-30 14:49:20 -03:00

14 lines
245 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