From 5580da62728ffe353f50bddabd27b88aba8ac5f2 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Tue, 10 Apr 2018 16:28:48 +0200 Subject: Add Led class implementation --- Led.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Led.hpp') diff --git a/Led.hpp b/Led.hpp index d4f4dcd..b082d7d 100644 --- a/Led.hpp +++ b/Led.hpp @@ -20,13 +20,13 @@ public: Led() = delete; virtual ~Led(); - Color color(); + Color color() const; void set(bool status); - bool status() const; + bool state() const; private: - bool _status; + bool _state; Color _color; }; -- cgit v1.2.1