db78ecd9cc
Have hashing and verification functs ready.
14 lines
245 B
C++
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 |