diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 11:32:57 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 11:32:57 +0100 |
commit | 72f6740ebb93dc940c3894658824ba6142c15bfa (patch) | |
tree | 922e5a41dc16c1eb2db501d6eaca809fd2d15d9f /src/RemoteControl.h | |
parent | 1e76247e059021ea52309ebd258b6eed033d6aee (diff) | |
parent | 95f556cf0797ab4c23f431e5c8c5accfa7f4c30b (diff) | |
download | dabmod-72f6740ebb93dc940c3894658824ba6142c15bfa.tar.gz dabmod-72f6740ebb93dc940c3894658824ba6142c15bfa.tar.bz2 dabmod-72f6740ebb93dc940c3894658824ba6142c15bfa.zip |
Merge branch 'next' into outputRefactoring
Diffstat (limited to 'src/RemoteControl.h')
-rw-r--r-- | src/RemoteControl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/RemoteControl.h b/src/RemoteControl.h index 013738b..11cd52c 100644 --- a/src/RemoteControl.h +++ b/src/RemoteControl.h @@ -94,7 +94,7 @@ class BaseRemoteController { class RemoteControllable { public: RemoteControllable(const std::string& name) : - m_name(name) {} + m_rc_name(name) {} RemoteControllable(const RemoteControllable& other) = delete; RemoteControllable& operator=(const RemoteControllable& other) = delete; @@ -105,7 +105,7 @@ class RemoteControllable { * It might be used in the commands the user has to type, so keep * it short */ - virtual std::string get_rc_name() const { return m_name; } + virtual std::string get_rc_name() const { return m_rc_name; } /* Return a list of possible parameters that can be set */ virtual std::list<std::string> get_supported_parameters() const; @@ -126,7 +126,7 @@ class RemoteControllable { virtual const std::string get_parameter(const std::string& parameter) const = 0; protected: - std::string m_name; + std::string m_rc_name; std::list< std::vector<std::string> > m_parameters; }; |