diff options
author | Matthias P. Braendli (think) <matthias@mpb.li> | 2012-08-16 18:05:40 +0200 |
---|---|---|
committer | Matthias P. Braendli (think) <matthias@mpb.li> | 2012-08-16 18:05:40 +0200 |
commit | b946ff6bceef6150f19da0a86950ed9ebbf0c2cb (patch) | |
tree | 6987a458cdb324a0155f7f8d36fc1ecc0d336bb3 /src/OutputUHD.h | |
parent | 521ee81560be5d065bd090002a2c6b92a322a034 (diff) | |
download | dabmod-b946ff6bceef6150f19da0a86950ed9ebbf0c2cb.tar.gz dabmod-b946ff6bceef6150f19da0a86950ed9ebbf0c2cb.tar.bz2 dabmod-b946ff6bceef6150f19da0a86950ed9ebbf0c2cb.zip |
crc-dabmod: removed useless set_parameters from remote_control
Diffstat (limited to 'src/OutputUHD.h')
-rw-r--r-- | src/OutputUHD.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/OutputUHD.h b/src/OutputUHD.h index 6d2df55..1a53804 100644 --- a/src/OutputUHD.h +++ b/src/OutputUHD.h @@ -159,32 +159,14 @@ class OutputUHD: public ModOutput, public RemoteControl { } /*********** REMOTE CONTROL ***************/ - virtual std::string get_rc_name() { return "uhd"; } - /* Tell the controllable to enrol at the given controller / virtual void enrol_at(BaseRemoteController& controller) { controller.enrol(this); } // */ - /* Return a list of possible parameters that can be set */ - list<string> get_supported_parameters() { - list<string> parameterlist; - for (list< vector<string> >::iterator it = parameters_.begin(); it != parameters_.end(); it++) { - parameterlist.push_back((*it)[0]); - } - return parameterlist; - } - - /* Return a mapping of the descriptions of all parameters */ - virtual std::list< std::vector<std::string> > get_parameter_descriptions() = 0; - /* Base function to set parameters. */ virtual void set_parameter(string parameter, string value) = 0; - /* Convenience functions for other common types */ - virtual void set_parameter(string parameter, double value) = 0; - virtual void set_parameter(string parameter, long value) = 0; - /* Getting a parameter always returns a string. */ virtual string get_parameter(string parameter) = 0; @@ -206,9 +188,6 @@ class OutputUHD: public ModOutput, public RemoteControl { bool enable_sync; size_t lastLen; - - - /*********** REMOTE CONTROL ***************/ }; |