27#ifndef OBSERVABLE_CONFVAR_H
28#define OBSERVABLE_CONFVAR_H
68template <
typename T = std::
string>
71 ConfigVar(
const std::string& section_,
const std::string& key_,
75 void Set(
const T& arg);
77 const T Get(
const T& default_val);
81 const std::string section;
82 const std::string key;
83 wxConfigBase*
const config;
Wrapper for configuration variables which lives in a wxBaseConfig object.
The observable notify/listen basic nuts and bolts.
General observable implementation with several specializations.