Transceiver52M: Add virtual destructor for radio device

Empty destructor removes compile warning.

Signed-off-by: Thomas Tsou <tom@tsou.cc>
This commit is contained in:
Thomas Tsou
2013-11-15 16:26:05 -05:00
parent 477b77c558
commit 8c33679fa5

View File

@@ -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;