Mercurial > minori
comparison include/services/services.h @ 250:c130f47f6f48
*: many many changes
e.g. the search page is actually implemented now!
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Sun, 04 Feb 2024 21:17:17 -0500 |
parents | 0c4138de2ea7 |
children | 862d0d8619f6 |
comparison
equal
deleted
inserted
replaced
249:6b2441c776dd | 250:c130f47f6f48 |
---|---|
1 #ifndef __services__services_h | 1 #ifndef __services__services_h |
2 #define __services__services_h | 2 #define __services__services_h |
3 | |
4 #include <vector> | |
5 #include <string> | |
3 | 6 |
4 namespace Services { | 7 namespace Services { |
5 | 8 |
6 void Synchronize(); | 9 void Synchronize(); |
10 std::vector<int> Search(const std::string& search); | |
7 void UpdateAnimeEntry(int id); | 11 void UpdateAnimeEntry(int id); |
8 bool Authorize(); | 12 bool Authorize(); |
9 | 13 |
10 }; // namespace Services | 14 }; // namespace Services |
11 | 15 |