-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadatatable.cpp
More file actions
37 lines (28 loc) · 806 Bytes
/
Copy pathmetadatatable.cpp
File metadata and controls
37 lines (28 loc) · 806 Bytes
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
#include "metadatatable.hpp"
#include "search.hpp"
#include "author.hpp"
std::set<Data*> MetadataTable::fetchAll()
{
std::vector<std::string> fields{
"id",
"name",
"sort"
};
return Table::fetchAll(fields);
}
Data* MetadataTable::fetch(int id)
{
std::vector<std::string> fields{"id", "name", "sort"};
return Table::fetch(id, fields);
}
std::string MetadataTable::searchQuery(const std::set<std::string>& query,
const std::string& op)
{
std::vector<std::string> fields{"name"};
return Table::searchQuery(query, op, fields);
}
std::set<Data*> MetadataTable::search(SearchQuery const& query)
{
std::vector<std::string> fields{"id", "name", "sort"};
return Table::search(query, fields);
}