aboutsummaryrefslogtreecommitdiffstats
path: root/lib/file/file_source_c.h
diff options
context:
space:
mode:
authorDimitri Stolnikov <horiz0n@gmx.net>2013-05-30 16:14:22 +0200
committerDimitri Stolnikov <horiz0n@gmx.net>2013-05-30 16:14:22 +0200
commit7e55cb9224fb7f1586a829f7321ef5b1bded88f5 (patch)
tree42eb1dbd4d55538bf4e5207d69211c6b01b00375 /lib/file/file_source_c.h
parent3e6a24e5d9e81878ac57281e7a9d3b23d3dbc6e8 (diff)
introduce osmosdr namespace, remove _c suffix
- the namespace conversion adopts the common gnuradio coding guidelines - suffix removal is a preparation to support 8/16 bit complex data types
Diffstat (limited to 'lib/file/file_source_c.h')
-rw-r--r--lib/file/file_source_c.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/file/file_source_c.h b/lib/file/file_source_c.h
index 29fafa1..22e1650 100644
--- a/lib/file/file_source_c.h
+++ b/lib/file/file_source_c.h
@@ -22,7 +22,7 @@
#include <gnuradio/hier_block2.h>
-#include "osmosdr_src_iface.h"
+#include "source_iface.h"
class file_source_c;
@@ -32,7 +32,7 @@ file_source_c_sptr make_file_source_c( const std::string & args = "" );
class file_source_c :
public gr::hier_block2,
- public osmosdr_src_iface
+ public source_iface
{
private:
friend file_source_c_sptr make_file_source_c(const std::string &args);