about summary refs log tree commit diff stats
path: root/src/sqliteinterface.hpp
diff options
context:
space:
mode:
authorComradeCrow <comradecrow@vivaldi.net>2023-05-17 16:05:13 -0700
committerComradeCrow <comradecrow@vivaldi.net>2023-05-17 16:05:13 -0700
commit8b4fa2a3b6b1a3d75fd4ae5a61266e159d22e095 (patch)
tree6bc2c757656071d39b840f6a0db27c53b33eedd5 /src/sqliteinterface.hpp
parent8972e4b0fdc216bf4ea1c0f7e699689d6c84de6a (diff)
downloadytcpp-8b4fa2a3b6b1a3d75fd4ae5a61266e159d22e095.tar.gz
Changes
Start Documenting, add more cpack stuff
Diffstat (limited to 'src/sqliteinterface.hpp')
-rw-r--r--src/sqliteinterface.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/sqliteinterface.hpp b/src/sqliteinterface.hpp
deleted file mode 100644
index cc4adb4..0000000
--- a/src/sqliteinterface.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef SQLITEINTERFACE_H
-#define SQLITEINTERFACE_H
-#include <string>
-#include <sqlite3.h>
-#include "video.hpp"
-
-class SqliteInterface {
-
-    public:
-        SqliteInterface();
-        ~SqliteInterface();
-        void openDB();
-        void closeDB();
-        void createTables();
-        void saveVideo(const Video::video&);
-        void saveInstance(const std::string& uri, float health, const std::string& location);
-    private:
-        sqlite3* db;
-};
-
-#endif  
\ No newline at end of file