| 8 | #include "Chameleon.h" |
| 9 | |
| 10 | class ConfigFile { |
| 11 | std::map<std::string,Chameleon> content_; |
| 12 | |
| 13 | public: |
| 14 | ConfigFile(std::string const& configFile); |
| 15 | |
| 16 | Chameleon const& Value(std::string const& section, std::string const& entry) const; |
| 17 | |
| 18 | Chameleon const& Value(std::string const& section, std::string const& entry, double value); |
| 19 | Chameleon const& Value(std::string const& section, std::string const& entry, std::string const& value); |
| 20 | |
| 21 | bool hasValue(std::string const& section, std::string const& entry) const; |
| 22 | }; |
| 23 | |
| 24 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected