MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / makeKeyValue

Method makeKeyValue

Source/Utils/ini.hpp:598–604  ·  view source on GitHub ↗

Creates a key and a value as a string

Source from the content-addressed store, hash-verified

596
597 //Creates a key and a value as a string
598 fini_string_t makeKeyValue(const key_t& key, const value_t& value)
599 {
600 fini_sstream_t line;
601 line << key << '=' << value << std::endl;
602
603 return line.str();
604 }
605};
606
607///Definitions

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected