blob: 79063048a5e8ffd544f04e74d8dc444c33233b53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#ifndef DATABASE_H_0B0A47D2
#define DATABASE_H_0B0A47D2
#include <string>
#include <exception>
#include <list>
struct sqlite3;
namespace verbly {
namespace generator {
class field;
class sqlite3_error : public std::exception {
public:
sqlite3_error(const std::string& what, const std::string& db_err);
const char* what() const noexcept override;
const char* db_err() const noexcept;
private:
std::string what_;
std::string db_err_;
};
class database {
public:
// Constructor
explicit database(std::string path);
// Disable copying
database(const database& other) = delete;
database& operator=(const database& other) = delete;
// Move constructor and move assignment
database(database&& other);
database& operator=(database&& other);
// Swap
friend void swap(database& first, database& second);
// Destructor
~database();
// Actions
void runQuery(std::string query);
void insertIntoTable(std::string table, std::list<field> fields);
private:
database()
{
}
sqlite3* ppdb_ = nullptr;
};
};
};
#endif /* end of include guard: DATABASE_H_0B0A47D2 */
|