#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;