diff options
author | Matthias P. Braendli (think) <matthias@mpb.li> | 2012-08-16 18:28:13 +0200 |
---|---|---|
committer | Matthias P. Braendli (think) <matthias@mpb.li> | 2012-08-16 18:28:13 +0200 |
commit | 06fe89bd86fc709908c5882a2c48d03fc0977a25 (patch) | |
tree | c2b39935d99e841e350af95c3d878155875f0a6a /src/OutputUHD.h | |
parent | b946ff6bceef6150f19da0a86950ed9ebbf0c2cb (diff) | |
download | dabmod-06fe89bd86fc709908c5882a2c48d03fc0977a25.tar.gz dabmod-06fe89bd86fc709908c5882a2c48d03fc0977a25.tar.bz2 dabmod-06fe89bd86fc709908c5882a2c48d03fc0977a25.zip |
crc-dabmod: added UHD tx gain remote control
Diffstat (limited to 'src/OutputUHD.h')
-rw-r--r-- | src/OutputUHD.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/OutputUHD.h b/src/OutputUHD.h index 1a53804..28d3f25 100644 --- a/src/OutputUHD.h +++ b/src/OutputUHD.h @@ -139,7 +139,7 @@ class UHDWorker { }; -class OutputUHD: public ModOutput, public RemoteControl { +class OutputUHD: public ModOutput, public RemoteControllable { public: OutputUHD(const char* device, unsigned sampleRate, @@ -165,10 +165,10 @@ class OutputUHD: public ModOutput, public RemoteControl { } // */ /* Base function to set parameters. */ - virtual void set_parameter(string parameter, string value) = 0; + virtual void set_parameter(string parameter, string value); /* Getting a parameter always returns a string. */ - virtual string get_parameter(string parameter) = 0; + virtual string get_parameter(string parameter); protected: |