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>
#include "notion.h"
#include "word.h"
#include "group.h"
#include "frame.h"
#include "lemma.h"
#include "form.h"
#include "pronunciation.h"
struct sqlite3;
namespace verbly {
template <typename Object>
class query;
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();
// Queries
query<notion> notions(filter where, bool random = true, int limit = 1) const;
query<word> words(filter where, bool random = true, int limit = 1) const;
query<group> groups(filter where, bool random = true, int limit = 1) const;
query<frame> frames(filter where, bool random = true, int limit = 1) const;
query<lemma> lemmas(filter where, bool random = true, int limit = 1) const;
query<form> forms(filter where, bool random = true, int limit = 1) const;
query<pronunciation> pronunciations(filter where, bool random = true, int limit = 1) const;
private:
database() = default;
sqlite3* ppdb_ = nullptr;
};
};
#endif /* end of include guard: DATABASE_H_0B0A47D2 */
|