still not done with refactoring but enough for today

This commit is contained in:
Jonas Zeunert
2018-12-14 02:56:29 +01:00
parent 8e12b3f3fa
commit ff3376b9d7
12 changed files with 38 additions and 29 deletions

View File

@@ -27,8 +27,8 @@ public:
Item(uint8_t address, std::string name);
~Item() override = default;
uint8_t get_address() override;
std::string get_name() override;
uint8_t get_address() const override;
std::string get_name() const override;
protected:
const uint8_t address;