Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24 lines (20 sloc)
446 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __WEBSITE | |
#define __WEBSITE | |
#include <wx/wx.h> | |
#include <wx/arrstr.h> | |
// Statsgen Includes | |
class Website | |
{ | |
public: | |
Website(); | |
~Website(); | |
void LoadConfig(); | |
bool TransferFiles(wxArrayString &filelist); | |
bool UploadZipContents(wxString &zipfile); | |
bool UploadZipTemplateContents(wxString &zipfile,wxString &templateFilename); | |
private: | |
wxString configGroup; | |
wxString FTPRemoteDirectory; | |
bool FTPEnabled; | |
}; | |
#endif |