| 35 | } |
| 36 | |
| 37 | std::string PluginConfig::item(const std::string& section, const std::string& key) { |
| 38 | std::string s = section, k = key; |
| 39 | makelower(s); |
| 40 | makelower(k); |
| 41 | |
| 42 | return sections[s][k]; |
| 43 | } |
| 44 | |
| 45 | void PluginConfig::parse(void) { |
| 46 | std::string line; |