about summary refs log tree commit diff stats
path: root/src/sqliteinterface.hpp
blob: 5dc25d321c2844f00f0392eaf0d705a61c64d7a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SQLITEINTERFACE_H
#define SQLITEINTERFACE_H
#include <string>
#include <sqlite3.h>
class SqliteInterface {

    public:
        SqliteInterface();
        ~SqliteInterface();
        void openDB();
        void closeDB();
    private:
        sqlite3* db;
};

#endif