You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/include/configfile.hpp

22 lines
365 B

#ifndef __CLASS_PROXYSQL_CONFIGFILE_H
#define __CLASS_PROXYSQL_CONFIGFILE_H
#include "libconfig.h++"
using namespace libconfig;
class ProxySQL_ConfigFile {
private:
//struct stat statbuf;
std::string filename;
public:
Config cfg;
bool OpenFile(const char *);
void CloseFile();
bool ReadGlobals();
};
#endif /* __CLASS_PROXYSQL_CONFIGFILE_H */