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