blob: 6abd2651d12dadfc8de76691673a2fed31f1b490 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef MCUREG_HPP
#define MCUREG_HPP
#include <mcubase.hpp>
#include <bit.hpp>
#include <list>
#include <string>
class mcureg : public mcubase
{
public:
mcureg(const std::string &name, const std::string &access);
virtual ~mcureg() = default;
void add(const bit &);
protected:
std::list<bit> bits;
};
#endif /* MCUREG_HPP */
|