MCPcopy Create free account
hub / github.com/USBGuard/usbguard / KeyValueParserPrivate

Method KeyValueParserPrivate

src/Library/KeyValueParserPrivate.cpp:41–46  ·  view source on GitHub ↗

* NOTE: * vector v should have strings UPPERCASE when case insensitive mode was enabled */

Source from the content-addressed store, hash-verified

39 * vector v should have strings UPPERCASE when case insensitive mode was enabled
40 */
41 KeyValueParserPrivate::KeyValueParserPrivate(KeyValueParser& p_instance, const std::vector<std::string>& v,
42 const std::string& sep, bool case_sensitive, bool validate_keys):
43 _keys(v), _separator(sep), _p_instance(p_instance), _case_sensitive(case_sensitive), _validate_keys(validate_keys)
44 {
45 (void)_p_instance;
46 }
47
48 KeyValueParserPrivate::KeyValueParserPrivate(KeyValueParser& p_instance, const std::vector<std::string>& v,
49 bool case_sensitive, bool validate_keys):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected