nesca/FileDownloader.h

20 lines
452 B
C
Raw Normal View History

2015-03-30 14:31:06 +00:00
#ifndef FILEDOWNLOADER_H
#define FILEDOWNLOADER_H
2015-04-02 10:26:32 +00:00
#include "Connector.h"
2015-03-30 14:31:06 +00:00
class FileDownloader {
2015-04-02 10:26:32 +00:00
private:
static std::string lastModifiedNeg;
static std::string lastModifiedL;
static std::string lastModifiedP;
static std::string lastModifiedSSH;
static std::string lastModifiedWFL;
static std::string lastModifiedWFP;
2015-03-30 14:31:06 +00:00
public:
2015-04-02 10:26:32 +00:00
static std::string lastModified;
2015-03-30 14:31:06 +00:00
static void checkWebFiles();
};
#endif // FILEDOWNLOADER_H