#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