| 50 | KeyValueParserPrivate(p_instance, v, "=", case_sensitive, validate_keys) {} |
| 51 | |
| 52 | void KeyValueParserPrivate::viewConfig() |
| 53 | { |
| 54 | USBGUARD_LOG(Info) << "separator -> " << this->_separator; |
| 55 | USBGUARD_LOG(Info) << "keys:"; |
| 56 | |
| 57 | for (auto item : this->_keys) { |
| 58 | USBGUARD_LOG(Info) << "--->"<< item; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | std::pair<std::string, std::string> KeyValueParserPrivate::parseLine(std::string& str) |
| 63 | { |