1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 */