#include <Iguana/Framework/interface/IgStateKey.h>
Public Member Functions | |
IgStateKeyDef (const std::string &label) | |
Create and register a new state key with name label. | |
~IgStateKeyDef (void) | |
Unregister the state key. | |
Private Attributes | |
std::string | m_label |
Definition at line 44 of file IgStateKey.h.
IgStateKeyDef::IgStateKeyDef | ( | const std::string & | label | ) |
Create and register a new state key with name label.
Definition at line 20 of file IgStateKey.cc.
00021 : IgStateKey (create (label)), 00022 m_label (label) 00023 {}
IgStateKeyDef::~IgStateKeyDef | ( | void | ) |
Unregister the state key.
Definition at line 26 of file IgStateKey.cc.
References m_label.
00027 { remove (m_label); }
std::string IgStateKeyDef::m_label [private] |