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.
19 lines
275 B
19 lines
275 B
#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
|
|
|