mirror of
https://github.com/Sude-/lgogdownloader.git
synced 2024-11-20 11:49:17 +01:00
49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
|
/* This program is free software. It comes without any warranty, to
|
||
|
* the extent permitted by applicable law. You can redistribute it
|
||
|
* and/or modify it under the terms of the Do What The Fuck You Want
|
||
|
* To Public License, Version 2, as published by Sam Hocevar. See
|
||
|
* http://sam.zoy.org/wtfpl/COPYING for more details. */
|
||
|
|
||
|
#ifndef CONFIG_H__
|
||
|
#define CONFIG_H__
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <curl/curl.h>
|
||
|
|
||
|
class Config
|
||
|
{
|
||
|
public:
|
||
|
Config() {};
|
||
|
virtual ~Config() {};
|
||
|
bool bVerbose;
|
||
|
bool bNoRemoteXML;
|
||
|
bool bNoCover;
|
||
|
bool bUpdateCheck;
|
||
|
bool bHelp;
|
||
|
bool bDownload;
|
||
|
bool bList;
|
||
|
bool bListDetails;
|
||
|
bool bLogin;
|
||
|
bool bRepair;
|
||
|
bool bNoInstallers;
|
||
|
bool bNoExtras;
|
||
|
bool bNoUnicode; // don't use Unicode in console output
|
||
|
bool bNoColor; // don't use colors
|
||
|
std::string sGameRegex;
|
||
|
std::string sDirectory;
|
||
|
std::string sXMLFile;
|
||
|
std::string sXMLDirectory;
|
||
|
std::string sToken;
|
||
|
std::string sSecret;
|
||
|
std::string sVersionString;
|
||
|
std::string sHome;
|
||
|
std::string sCookiePath;
|
||
|
std::string sConfigFilePath;
|
||
|
unsigned int iInstallerType;
|
||
|
unsigned int iInstallerLanguage;
|
||
|
size_t iChunkSize;
|
||
|
curl_off_t iDownloadRate;
|
||
|
};
|
||
|
|
||
|
#endif // CONFIG_H__
|