aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Tsou <tom@tsou.cc>2013-11-15 16:26:05 -0500
committerThomas Tsou <tom@tsou.cc>2013-11-15 23:35:07 -0500
commit8c33679fa58de67b4b2557d5f4a694d1451c514f (patch)
tree70a6f26577d3c0c1a6a0ab7c4a38994b73fd3af1
parent477b77c558d3294cd3170fcea04ebe98a11465d9 (diff)
Transceiver52M: Add virtual destructor for radio device
Empty destructor removes compile warning. Signed-off-by: Thomas Tsou <tom@tsou.cc>
-rw-r--r--Transceiver52M/radioDevice.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Transceiver52M/radioDevice.h b/Transceiver52M/radioDevice.h
index 10a0b4d..6fd10db 100644
--- a/Transceiver52M/radioDevice.h
+++ b/Transceiver52M/radioDevice.h
@@ -43,6 +43,8 @@ class RadioDevice {
/** Initialize the USRP */
virtual int open(const std::string &args = "", bool extref = false)=0;
+ virtual ~RadioDevice() { }
+
/** Start the USRP */
virtual bool start()=0;