From 74ff50c5ca343b5829287f6e7ee2b916aa29720e Mon Sep 17 00:00:00 2001 From: Darkelarious Date: Sat, 8 Mar 2025 15:11:53 +0100 Subject: reorganise files Sort out code/source files that were mixed with other repository files. No new functional changes. --- Database/databaseinterface.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 Database/databaseinterface.h (limited to 'Database/databaseinterface.h') diff --git a/Database/databaseinterface.h b/Database/databaseinterface.h deleted file mode 100644 index f80c93a..0000000 --- a/Database/databaseinterface.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef DATABASEINTERFACE_H -#define DATABASEINTERFACE_H - -#include -#include -#include -#include -#include "Core/version.h" -#include "Logger/logprimitive.h" - -// database file path (following README structure) -const QString _sqlitePath = "../data/masterserver.db"; - -// init and close -bool initDatabase(const QString applicationPath); -void closeDatabase(); - -// report execution errors (terminal/display only) -bool reportQuery(const QSqlQuery &q); // always returns false! - -// generate tables in first run -bool createTables(); - -#endif // DATABASEINTERFACE_H -- cgit v1.2.3