remove unused self()

This commit is contained in:
Dimitri Stolnikov 2013-02-16 12:44:38 +01:00
parent 0f371eeca1
commit d4de9d18c1
8 changed files with 0 additions and 28 deletions

View File

@ -116,11 +116,6 @@ std::vector< std::string > fcd_source::get_devices()
return devices;
}
gr_basic_block_sptr fcd_source::self()
{
return gr_hier_block2::self();
}
std::string fcd_source::name()
{
return "FUNcube Dongle";

View File

@ -46,8 +46,6 @@ public:
static std::vector< std::string > get_devices();
gr_basic_block_sptr self();
std::string name();
size_t get_num_channels( void );

View File

@ -94,11 +94,6 @@ file_source_c::~file_source_c()
{
}
gr_basic_block_sptr file_source_c::self()
{
return gr_hier_block2::self();
}
std::string file_source_c::name()
{
return "IQ File Source";

View File

@ -42,8 +42,6 @@ private:
public:
~file_source_c();
gr_basic_block_sptr self();
std::string name();
static std::vector< std::string > get_devices();

View File

@ -125,11 +125,6 @@ rtl_tcp_source_c::~rtl_tcp_source_c()
{
}
gr_basic_block_sptr rtl_tcp_source_c::self()
{
return gr_hier_block2::self();
}
std::string rtl_tcp_source_c::name()
{
return "RTL TCP Client";

View File

@ -44,8 +44,6 @@ private:
public:
~rtl_tcp_source_c();
gr_basic_block_sptr self();
std::string name();
static std::vector< std::string > get_devices();

View File

@ -123,11 +123,6 @@ std::vector< std::string > uhd_source_c::get_devices()
return devices;
}
gr_basic_block_sptr uhd_source_c::self()
{
return gr_hier_block2::self();
}
std::string uhd_source_c::name()
{
// uhd::property_tree::sptr prop_tree = _src->get_device()->get_device()->get_tree();

View File

@ -46,8 +46,6 @@ public:
static std::vector< std::string > get_devices();
gr_basic_block_sptr self();
std::string name();
size_t get_num_channels( void );