#ifndef BASEREGISTERREGION_H #define BASEREGISTERREGION_H #include "BaseRegister.h" class BaseRegisterRegion { private: QList _registers; public: BaseRegisterRegion(); void writeAll(); void readAll(); void clearAll(); }; #endif //BASEREGISTERREGION_H