diff options
Diffstat (limited to 'src/MuxElements.h')
-rw-r--r-- | src/MuxElements.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/MuxElements.h b/src/MuxElements.h index aa4f602..3bcc903 100644 --- a/src/MuxElements.h +++ b/src/MuxElements.h @@ -202,6 +202,7 @@ class DabComponent : public RemoteControllable /* Getting a parameter always returns a string. */ virtual const string get_parameter(const string& parameter) const; + virtual ~DabComponent() {} private: const DabComponent& operator=(const DabComponent& other); @@ -236,6 +237,8 @@ class DabService : public RemoteControllable /* Getting a parameter always returns a string. */ virtual const string get_parameter(const string& parameter) const; + virtual ~DabService() {} + private: const DabService& operator=(const DabService& other); DabService(const DabService& other); |