diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-02-14 18:49:04 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-02-14 18:49:04 +0100 |
commit | c1da0ac7cca49e0b96dbb359ee48000cb04df15b (patch) | |
tree | c6041007cfa28ea80e5dc5df2f1944faf714ab32 /src/MuxElements.h | |
parent | d6d8d67b1c921d8fca7257291c15c07bdea8d14a (diff) | |
download | dabmux-c1da0ac7cca49e0b96dbb359ee48000cb04df15b.tar.gz dabmux-c1da0ac7cca49e0b96dbb359ee48000cb04df15b.tar.bz2 dabmux-c1da0ac7cca49e0b96dbb359ee48000cb04df15b.zip |
improve RC constness
Diffstat (limited to 'src/MuxElements.h')
-rw-r--r-- | src/MuxElements.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/MuxElements.h b/src/MuxElements.h index 711f3cf..c416314 100644 --- a/src/MuxElements.h +++ b/src/MuxElements.h @@ -188,10 +188,11 @@ class DabComponent : public RemoteControllable bool isPacketComponent(vector<dabSubchannel*>& subchannels); /* Remote control */ - virtual void set_parameter(string parameter, string value); + virtual void set_parameter(const string& parameter, + const string& value); /* Getting a parameter always returns a string. */ - virtual string get_parameter(string parameter); + virtual const string get_parameter(const string& parameter) const; private: @@ -221,10 +222,11 @@ class DabService : public RemoteControllable DabLabel label; /* Remote control */ - virtual void set_parameter(string parameter, string value); + virtual void set_parameter(const string& parameter, + const string& value); /* Getting a parameter always returns a string. */ - virtual string get_parameter(string parameter); + virtual const string get_parameter(const string& parameter) const; private: const DabService& operator=(const DabService& other); |