#ifndef MCUREG_HPP #define MCUREG_HPP #include #include #include #include class mcureg : public mcubase { public: mcureg(const std::string &name, const std::string &access); virtual ~mcureg() = default; void add(const bit &); protected: std::list bits; }; #endif /* MCUREG_HPP */