summaryrefslogtreecommitdiff
path: root/gr-analog/lib/sig_source_X_impl.cc.t
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-04-17 13:43:52 -0400
committerTom Rondeau <trondeau@vt.edu>2013-04-29 14:52:56 -0400
commitf3e2e07201c50033bf6c9d0c6a6f068557b4f17f (patch)
tree140b3c2d20a951ffd4abd564c3378ee2e2f9fc7c /gr-analog/lib/sig_source_X_impl.cc.t
parent35303ae975a5b1bdecc2492bc96e2b8e89b62a3d (diff)
runtime: converting runtime core to gr namespace, gnuradio include dir.
Diffstat (limited to 'gr-analog/lib/sig_source_X_impl.cc.t')
-rw-r--r--gr-analog/lib/sig_source_X_impl.cc.t10
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-analog/lib/sig_source_X_impl.cc.t b/gr-analog/lib/sig_source_X_impl.cc.t
index ad8b7e4b0c..c9e99f015a 100644
--- a/gr-analog/lib/sig_source_X_impl.cc.t
+++ b/gr-analog/lib/sig_source_X_impl.cc.t
@@ -28,10 +28,10 @@
#include "@IMPL_NAME@.h"
#include <algorithm>
-#include <gr_io_signature.h>
+#include <gnuradio/io_signature.h>
#include <stdexcept>
#include <algorithm>
-#include <gr_complex.h>
+#include <gnuradio/gr_complex.h>
namespace gr {
namespace analog {
@@ -46,9 +46,9 @@ namespace gr {
@IMPL_NAME@::@IMPL_NAME@(double sampling_freq, gr_waveform_t waveform,
double frequency, double ampl, @TYPE@ offset)
- : gr_sync_block("@BASE_NAME@",
- gr_make_io_signature(0, 0, 0),
- gr_make_io_signature(1, 1, sizeof(@TYPE@))),
+ : sync_block("@BASE_NAME@",
+ io_signature::make(0, 0, 0),
+ io_signature::make(1, 1, sizeof(@TYPE@))),
d_sampling_freq(sampling_freq), d_waveform(waveform),
d_frequency(frequency), d_ampl(ampl), d_offset(offset)
{