jsweeper/src/config.h

22 lines
245 B
C++

#include "inifile.h"
class Config
{
private:
IniFile ini;
std::string m_filename;
public:
void Read();
void Write();
int CellPadding;
int FontSize;
std::string FontFace;
bool ExpandClients;
bool ExpandGroups;
};
extern Config cfg;