From 673855b03c64a39109efc8c49c5bd67913ccb36f Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Fri, 25 Sep 2020 01:03:27 +0200 Subject: Rename mcureg to mcubase so mcureg inherits from it --- hw_html/mcubase.cpp | 5 +++++ hw_html/mcubase.hpp | 8 ++++++++ hw_html/mcureg.cpp | 5 ----- hw_html/mcureg.hpp | 8 -------- 4 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 hw_html/mcubase.cpp create mode 100644 hw_html/mcubase.hpp delete mode 100644 hw_html/mcureg.cpp delete mode 100644 hw_html/mcureg.hpp diff --git a/hw_html/mcubase.cpp b/hw_html/mcubase.cpp new file mode 100644 index 0000000..f894d42 --- /dev/null +++ b/hw_html/mcubase.cpp @@ -0,0 +1,5 @@ +#include "mcureg.hpp" + +mcureg::mcureg(mcureg::access access) +{ +} diff --git a/hw_html/mcubase.hpp b/hw_html/mcubase.hpp new file mode 100644 index 0000000..8d99de2 --- /dev/null +++ b/hw_html/mcubase.hpp @@ -0,0 +1,8 @@ +class mcureg +{ +public: + enum access {UNDEF, C, R, S, W, RC, RS, RW, RSV, W1C, W1S}; + + explicit mcureg(access access); + virtual ~mcureg() = default; +}; diff --git a/hw_html/mcureg.cpp b/hw_html/mcureg.cpp deleted file mode 100644 index f894d42..0000000 --- a/hw_html/mcureg.cpp +++ /dev/null @@ -1,5 +0,0 @@ -#include "mcureg.hpp" - -mcureg::mcureg(mcureg::access access) -{ -} diff --git a/hw_html/mcureg.hpp b/hw_html/mcureg.hpp deleted file mode 100644 index 8d99de2..0000000 --- a/hw_html/mcureg.hpp +++ /dev/null @@ -1,8 +0,0 @@ -class mcureg -{ -public: - enum access {UNDEF, C, R, S, W, RC, RS, RW, RSV, W1C, W1S}; - - explicit mcureg(access access); - virtual ~mcureg() = default; -}; -- cgit v1.2.3