From f3e2e07201c50033bf6c9d0c6a6f068557b4f17f Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Wed, 17 Apr 2013 13:43:52 -0400
Subject: runtime: converting runtime core to gr namespace, gnuradio include
 dir.

---
 gr-blocks/lib/wavfile_source_impl.cc | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

(limited to 'gr-blocks/lib/wavfile_source_impl.cc')

diff --git a/gr-blocks/lib/wavfile_source_impl.cc b/gr-blocks/lib/wavfile_source_impl.cc
index 2e3b0e240c..7538792d1c 100644
--- a/gr-blocks/lib/wavfile_source_impl.cc
+++ b/gr-blocks/lib/wavfile_source_impl.cc
@@ -25,8 +25,8 @@
 #endif
 
 #include "wavfile_source_impl.h"
-#include <gr_io_signature.h>
-#include <blocks/wavfile.h>
+#include <gnuradio/io_signature.h>
+#include <gnuradio/blocks/wavfile.h>
 #include <sys/types.h>
 #include <fcntl.h>
 #include <stdexcept>
@@ -58,9 +58,9 @@ namespace gr {
     }
 
     wavfile_source_impl::wavfile_source_impl (const char *filename, bool repeat)
-      : gr_sync_block("wavfile_source",
-		      gr_make_io_signature(0, 0, 0),
-		      gr_make_io_signature(1, 2, sizeof(float))),
+      : sync_block("wavfile_source",
+		      io_signature::make(0, 0, 0),
+		      io_signature::make(1, 2, sizeof(float))),
 	d_fp(NULL), d_repeat(repeat),
 	d_sample_rate(1), d_nchans(1), d_bytes_per_sample(2), d_first_sample_pos(0),
 	d_samples_per_chan(0), d_sample_idx(0)
@@ -102,7 +102,7 @@ namespace gr {
       }
 
       // Re-set the output signature
-      set_output_signature(gr_make_io_signature(1, d_nchans, sizeof(float)));
+      set_output_signature(io_signature::make(1, d_nchans, sizeof(float)));
     }
 
     wavfile_source_impl::~wavfile_source_impl ()
-- 
cgit v1.2.3