forked from sdr/gr-osmosdr
fix missing sink/source iface destructor
parent
a309841752
commit
6b11b02947
|
@ -32,6 +32,8 @@
|
|||
class sink_iface
|
||||
{
|
||||
public:
|
||||
virtual ~sink_iface() = default;
|
||||
|
||||
/*!
|
||||
* Get the number of channels the underlying radio hardware offers.
|
||||
* \return the number of available channels
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
class source_iface
|
||||
{
|
||||
public:
|
||||
virtual ~source_iface() = default;
|
||||
|
||||
/*!
|
||||
* Get the number of channels the underlying radio hardware offers.
|
||||
* \return the number of available channels
|
||||
|
|
Loading…
Reference in New Issue