| 130 | } |
| 131 | |
| 132 | bool Config::hasBool( const std::string& key ) const |
| 133 | { |
| 134 | return ( !config_[key].isNull() && config_[key].isBool() ); |
| 135 | } |
| 136 | bool Config::getBool( const std::string& key, bool defaultValue ) const |
| 137 | { |
| 138 | if ( !config_[key].isNull() ) |