summaryrefslogtreecommitdiff
path: root/src/sqlite3_db.hh
blob: 1a24df45a4353a3b553d6c269dbbe67f57bf4edc (plain)
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 */