about summary refs log tree commit diff stats
path: root/src/sqliteinterface.hpp
diff options
context:
space:
mode:
authorComradeCrow <comradecrow@vivaldi.net>2023-05-08 18:54:03 -0700
committerComradeCrow <comradecrow@vivaldi.net>2023-05-08 18:54:03 -0700
commit0638f3cc60d5e76b3f562aa54258bbc8641af141 (patch)
treedc4f24acaec72fb434d13b4129d20ef62057051e /src/sqliteinterface.hpp
parentc327cba245ed3cae7b73f172c3c6ba6e6778c848 (diff)
downloadytcpp-0638f3cc60d5e76b3f562aa54258bbc8641af141.tar.gz
start work on sqlite
Diffstat (limited to 'src/sqliteinterface.hpp')
-rw-r--r--src/sqliteinterface.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteinterface.hpp b/src/sqliteinterface.hpp
index 5be355e..617ebd3 100644
--- a/src/sqliteinterface.hpp
+++ b/src/sqliteinterface.hpp
@@ -10,6 +10,7 @@ class SqliteInterface {
         void openDB();
         void closeDB();
         void createTables();
+        void saveVideo();
     private:
         sqlite3* db;
 };