forked from markus/S_New4
27 lines
571 B
C++
27 lines
571 B
C++
#ifndef MANAGEPROGRAM_H
|
|
#define MANAGEPROGRAM_H
|
|
|
|
#include "parameterManager.h"
|
|
#include "pageManager.h"
|
|
#include "accountManager.h"
|
|
#include <unistd.h>
|
|
|
|
class ProgramManager
|
|
{
|
|
public:
|
|
ProgramManager();
|
|
int start(Settings setting);
|
|
|
|
private:
|
|
int defaultModus(Settings * settings);
|
|
int directLinkModus(Settings * settings);
|
|
|
|
PageManager pageManager;
|
|
|
|
|
|
int convertLink(std::string redirectLink, AccountManager *accountManager, Settings * settings, int Staffel = -1, int Folge = -1, std::string allLinks = "NOT_EMPTY");
|
|
|
|
};
|
|
|
|
#endif // MANAGEPROGRAM_H
|