You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
275 B
20 lines
275 B
5 years ago
|
#ifndef BASEREGISTERREGION_H
|
||
|
#define BASEREGISTERREGION_H
|
||
|
|
||
|
#include "BaseRegister.h"
|
||
|
|
||
|
class BaseRegisterRegion
|
||
|
{
|
||
|
private:
|
||
|
QList<BaseRegister> _registers;
|
||
|
|
||
|
public:
|
||
|
BaseRegisterRegion();
|
||
|
|
||
|
void writeAll();
|
||
|
void readAll();
|
||
|
void clearAll();
|
||
|
};
|
||
|
|
||
|
#endif //BASEREGISTERREGION_H
|