LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
Configurable.h
1 #ifndef CONFIGURABLE_H_
2 #define CONFIGURABLE_H_
3 
4 class ConfigManager;
5 
12 {
13 public:
14  Configurable();
15  virtual ~Configurable();
16 
20  virtual void Configure() = 0;
21 
22 protected:
23  ConfigManager * const m_config;
24 };
25 
26 #endif