about summary refs log tree commit diff stats
path: root/src/sqliteinterface.hpp
diff options
context:
space:
mode:
authorComradeCrow <comradecrow@vivaldi.net>2023-05-09 19:03:53 -0700
committerComradeCrow <comradecrow@vivaldi.net>2023-05-09 19:03:53 -0700
commit0bde4573e5301f682d438856c4622209549718c9 (patch)
tree8b293d0ae2721f585e817240b819392cda480ddf /src/sqliteinterface.hpp
parent0638f3cc60d5e76b3f562aa54258bbc8641af141 (diff)
downloadytcpp-0bde4573e5301f682d438856c4622209549718c9.tar.gz
slight update
try to get cmake to recognise python again
Diffstat (limited to 'src/sqliteinterface.hpp')
-rw-r--r--src/sqliteinterface.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sqliteinterface.hpp b/src/sqliteinterface.hpp
index 617ebd3..8d7f016 100644
--- a/src/sqliteinterface.hpp
+++ b/src/sqliteinterface.hpp
@@ -2,6 +2,8 @@
 #define SQLITEINTERFACE_H
 #include <string>
 #include <sqlite3.h>
+#include "video.hpp"
+
 class SqliteInterface {
 
     public:
@@ -10,7 +12,7 @@ class SqliteInterface {
         void openDB();
         void closeDB();
         void createTables();
-        void saveVideo();
+        void saveVideo(const Video::video&);
     private:
         sqlite3* db;
 };