16 lines
482 B
C++
16 lines
482 B
C++
#ifndef GETPAGE_H
|
|
#define GETPAGE_H
|
|
|
|
#include <string>
|
|
#include <set>
|
|
#include <experimental/filesystem>
|
|
|
|
std::string getSource(const std::string &url);
|
|
std::string absolutePath(const std::string &path);
|
|
std::string getDefUrl( const std::string &show, const std::string &language );
|
|
void findSeason(std::set<std::experimental::filesystem::path> &files, int season, const std::string &path);
|
|
void iterateFS(std::set<int> &seasons, const std::string &path);
|
|
void printHelp();
|
|
|
|
#endif
|