diff options
author | Tom Rondeau | 2012-10-20 17:14:02 -0400 |
---|---|---|
committer | Tom Rondeau | 2012-10-20 17:14:02 -0400 |
commit | 970bb33df3e9dfe19d9cae49a95494b7e175644f (patch) | |
tree | 87e984bd31520f1eacce3fd3c5585e42094af5c5 /gr-analog/swig/analog_swig.i | |
parent | 0b62e85e4c57796098c4ecf367c8aa16a120e791 (diff) | |
download | gnuradio-970bb33df3e9dfe19d9cae49a95494b7e175644f.tar.gz gnuradio-970bb33df3e9dfe19d9cae49a95494b7e175644f.tar.bz2 gnuradio-970bb33df3e9dfe19d9cae49a95494b7e175644f.zip |
analog: adding squelch_base_ff and ctcss_squelch_ff to analog.
This addresses the issues of inheriting from both gr_block and another block (squelch_base_ff, in this case).
Diffstat (limited to 'gr-analog/swig/analog_swig.i')
-rw-r--r-- | gr-analog/swig/analog_swig.i | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gr-analog/swig/analog_swig.i b/gr-analog/swig/analog_swig.i index 0ce6854ca..6d714dd0d 100644 --- a/gr-analog/swig/analog_swig.i +++ b/gr-analog/swig/analog_swig.i @@ -28,8 +28,12 @@ %{ #include "analog/cpm.h" +#include "analog/ctcss_squelch_ff.h" +#include "analog/squelch_base_ff.h" %} %include "analog/cpm.h" +%include "analog/ctcss_squelch_ff.h" +%include "analog/squelch_base_ff.h" -//GR_SWIG_BLOCK_MAGIC2(); +GR_SWIG_BLOCK_MAGIC2(analog, ctcss_squelch_ff); |