24 std::map<std::string, std::string>
mapStr_;
28 inline void enumVals(std::ostream& out,
int level = 1)
const {
30 out.write(
"\t", level);
31 out << v.first <<
":\t" << v.second << std::endl;
35 inline bool has(
const std::string& key)
const noexcept {
36 if (
mapStr_.count(key))
return true;
41 T
get(
const std::string& key,
bool& result)
const {
46 std::string valS =
mapStr_.at(key);
47 std::istringstream i{valS};
55 T
get(
const std::string& key,
const T& defaultval,
bool& result)
const {
60 return get<T>(key, result);
67 std::string valS = o.str();
74 if (
has(key))
throw std::logic_error(
"Key already exists.");
75 return this->set<T>(key, value);
Quick and easy key-value container that stringifies all values.
T get(const std::string &key, const T &defaultval, bool &result) const
Retrieves an option. Returns defaultval if nonexistant.
std::map< std::string, std::string > mapStr_
Options & set(const std::string &key, const T &value)
Adds or replaces an option.
bool has(const std::string &key) const noexcept
Does a key of the specified name exist?
Options & add(const std::string &key, const T &value)
Adds an option. Throws if the same name already exists.
T get(const std::string &key, bool &result) const
Retrieves an option.
void enumVals(std::ostream &out, int level=1) const
List all stored values.