aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri Stolnikov <horiz0n@gmx.net>2013-02-16 12:44:38 +0100
committerDimitri Stolnikov <horiz0n@gmx.net>2013-02-16 12:44:38 +0100
commitd4de9d18c1912c85bac6c8b89d2154fdc14b562d (patch)
treea5384ac649cab8cee28b1fae513b2848c8c78fcf
parent0f371eeca1ad5abcac3ab36bcc854b4a63ada2e8 (diff)
remove unused self()
-rw-r--r--lib/fcd/fcd_source.cc5
-rw-r--r--lib/fcd/fcd_source.h2
-rw-r--r--lib/file/file_source_c.cc5
-rw-r--r--lib/file/file_source_c.h2
-rw-r--r--lib/rtl_tcp/rtl_tcp_source_c.cc5
-rw-r--r--lib/rtl_tcp/rtl_tcp_source_c.h2
-rw-r--r--lib/uhd/uhd_source_c.cc5
-rw-r--r--lib/uhd/uhd_source_c.h2
8 files changed, 0 insertions, 28 deletions
diff --git a/lib/fcd/fcd_source.cc b/lib/fcd/fcd_source.cc
index 38ce7dc..785a67f 100644
--- a/lib/fcd/fcd_source.cc
+++ b/lib/fcd/fcd_source.cc
@@ -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";
diff --git a/lib/fcd/fcd_source.h b/lib/fcd/fcd_source.h
index 6fa00a3..6c175d1 100644
--- a/lib/fcd/fcd_source.h
+++ b/lib/fcd/fcd_source.h
@@ -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 );
diff --git a/lib/file/file_source_c.cc b/lib/file/file_source_c.cc
index e62ce60..72bee04 100644
--- a/lib/file/file_source_c.cc
+++ b/lib/file/file_source_c.cc
@@ -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";
diff --git a/lib/file/file_source_c.h b/lib/file/file_source_c.h
index 68f12ab..94d2c0a 100644
--- a/lib/file/file_source_c.h
+++ b/lib/file/file_source_c.h
@@ -42,8 +42,6 @@ private:
public:
~file_source_c();
- gr_basic_block_sptr self();
-
std::string name();
static std::vector< std::string > get_devices();
diff --git a/lib/rtl_tcp/rtl_tcp_source_c.cc b/lib/rtl_tcp/rtl_tcp_source_c.cc
index 861cf59..72413df 100644
--- a/lib/rtl_tcp/rtl_tcp_source_c.cc
+++ b/lib/rtl_tcp/rtl_tcp_source_c.cc
@@ -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";
diff --git a/lib/rtl_tcp/rtl_tcp_source_c.h b/lib/rtl_tcp/rtl_tcp_source_c.h
index 17f4c0c..1c695c3 100644
--- a/lib/rtl_tcp/rtl_tcp_source_c.h
+++ b/lib/rtl_tcp/rtl_tcp_source_c.h
@@ -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();
diff --git a/lib/uhd/uhd_source_c.cc b/lib/uhd/uhd_source_c.cc
index 809516a..79c4e47 100644
--- a/lib/uhd/uhd_source_c.cc
+++ b/lib/uhd/uhd_source_c.cc
@@ -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();
diff --git a/lib/uhd/uhd_source_c.h b/lib/uhd/uhd_source_c.h
index 5ab2963..b97eaea 100644
--- a/lib/uhd/uhd_source_c.h
+++ b/lib/uhd/uhd_source_c.h
@@ -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 );