| 46 | //------------------class |
| 47 | |
| 48 | class StringPair |
| 49 | { |
| 50 | public: |
| 51 | StringPair(const std::string &key, const std::string &value); |
| 52 | std::string m_key; |
| 53 | std::string m_value; |
| 54 | }; |
| 55 | |
| 56 | |
| 57 | #define APP_CONFIG_VERSION 3 |
no outgoing calls
no test coverage detected