1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef SQLITE3_DB_HH #define SQLITE3_DB_HH #include "db.hh" #include <memory> #include <string> namespace stuff { class SQLite3 { public: static std::unique_ptr<DB> open(const std::string& path); }; } // namespace stuff #endif /* SQLITE3_DB_HH */