view include/services/services.h @ 367:8d45d892be88 default tip

*: instead of pugixml, use Qt XML features this means we have one extra Qt dependency though...
author Paper <paper@tflc.us>
date Sun, 17 Nov 2024 22:55:47 -0500
parents b5d6c27c308f
children
line wrap: on
line source

#ifndef MINORI_SERVICES_SERVICES_H_
#define MINORI_SERVICES_SERVICES_H_

#include "core/anime.h"
#include "core/date.h"

#include <string>
#include <vector>

namespace Services {

void Synchronize();

/* true = metadata was retrieved
 * false = metadata failed to be retrieved OR
 *         no metadata to be retrieved */
bool RetrieveAnimeMetadata(int id);

std::vector<int> Search(const std::string& search);
bool GetSeason(Anime::Season season);
void UpdateAnimeEntry(int id);

}; // namespace Services

#endif // MINORI_SERVICES_SERVICES_H_