| 143 | } |
| 144 | |
| 145 | bool ConfigurationHolder::readBooleanFromConfigFile(Configuration & configObject) |
| 146 | { |
| 147 | UINT val = GetPrivateProfileInt(CONFIG_FILE_SECTION_NAME, configObject.getName(), 0, configPath); |
| 148 | configObject.setBool(val != 0); |
| 149 | return true; |
| 150 | } |
| 151 | |
| 152 | bool ConfigurationHolder::saveBooleanToConfigFile(const Configuration & configObject) const |
| 153 | { |