24 Named(
const std::string& name, T value):
A mixin class to attach a name to an object. Based on class with same name in CDC package.
std::string getName() const
get name of the object
void setName(const std::string &name)
set name of the object
std::string m_name
name associated with object m_value
Named(const std::string &name, T value)
Constructor taking the name and the desired value.
T getValue()
get the object
T m_value
object to be associated with name
Abstract base class for different kinds of events.