00001
00002
00003
00004
00005
00006
00007
00008 #ifndef ots_RegisterConfiguration_h
00009 #define ots_RegisterConfiguration_h
00010
00011 #include "ConfigurationBase.h"
00012
00013 namespace ots {
00014
00015 class RegisterConfiguration: public ots::ConfigurationBase
00016 {
00017 public:
00018 RegisterConfiguration (std::string staticConfigurationName);
00019 virtual ~RegisterConfiguration ();
00020
00021 void init (void);
00022 protected:
00023
00024 enum{ComponentName,
00025 RegisterName,
00026 RegisterBaseAddress,
00027 RegisterSize,
00028 RegisterAccess
00029 };
00030 };
00031
00032 }
00033
00034 #endif