LRAUV  revA
ConfigReader.h
Go to the documentation of this file.
1 /*
2  * ConfigReader.h
3  *
4  * Created on: Jan 9, 2012
5  * Author: godin
6  */
7 
8 #ifndef CONFIGREADER_H_
9 #define CONFIGREADER_H_
10 
11 #include "DataReader.h"
12 
13 class ConfigReader: public DataReader
14 {
15 public:
16  ConfigReader( Component* owner, DataElement& element,
17  const Unit& defaultUnit );
18  virtual ~ConfigReader();
19 };
20 
21 #endif /* CONFIGREADER_H_ */
Contains the DataReader class definition.
A DataAccessor that reads values from the Slate Contains a default dataValue that must not be NULL...
Definition: DataReader.h:30
ConfigReader(Component *owner, DataElement &element, const Unit &defaultUnit)
Definition: ConfigReader.cpp:10
Abstract Base class for software components.
Definition: Component.h:53
Definition: ConfigReader.h:13
virtual ~ConfigReader()
Definition: ConfigReader.cpp:15
Code that represents an engineering unit.
Definition: Unit.h:24
Abstact base class for one "element" of the Slate.
Definition: DataElement.h:37