summaryrefslogtreecommitdiff
path: root/src/sqlite3_db.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/sqlite3_db.hh')
-rw-r--r--src/sqlite3_db.hh17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/sqlite3_db.hh b/src/sqlite3_db.hh
new file mode 100644
index 0000000..6e266e9
--- /dev/null
+++ b/src/sqlite3_db.hh
@@ -0,0 +1,17 @@
+#ifndef SQLITE3_DB_HH
+#define SQLITE3_DB_HH
+
+#include "db.hh"
+
+#include <string>
+
+namespace stuff {
+
+class SQLite3 {
+public:
+ static DB* open(const std::string& path);
+};
+
+} // namespace stuff
+
+#endif /* SQLITE3_DB_HH */