diff options
author | Johnathan Corgan | 2012-07-02 08:36:46 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-07-02 08:36:46 -0700 |
commit | cc085e128901a9f3e8bfcc45d1834a62d747726c (patch) | |
tree | 18c7542c4751fd3d0dbe6504a6d5f35b8d3bb392 /gr-blocks/swig/blocks_swig.i | |
parent | 70d89e2051264876055fe9f73cbcb2823806b3ee (diff) | |
download | gnuradio-cc085e128901a9f3e8bfcc45d1834a62d747726c.tar.gz gnuradio-cc085e128901a9f3e8bfcc45d1834a62d747726c.tar.bz2 gnuradio-cc085e128901a9f3e8bfcc45d1834a62d747726c.zip |
blocks: added gr::blocks::add_XX (bb ss ii)
Diffstat (limited to 'gr-blocks/swig/blocks_swig.i')
-rw-r--r-- | gr-blocks/swig/blocks_swig.i | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gr-blocks/swig/blocks_swig.i b/gr-blocks/swig/blocks_swig.i index f70e536b2..f4612f5d8 100644 --- a/gr-blocks/swig/blocks_swig.i +++ b/gr-blocks/swig/blocks_swig.i @@ -40,6 +40,9 @@ #include "blocks/add_const_vss.h" #include "blocks/add_const_vii.h" #include "blocks/add_const_vcc.h" +#include "blocks/and_bb.h" +#include "blocks/and_ss.h" +#include "blocks/and_ii.h" #include "blocks/char_to_float.h" #include "blocks/char_to_short.h" #include "blocks/complex_to_interleaved_short.h" @@ -100,6 +103,9 @@ %include "blocks/add_const_vss.h" %include "blocks/add_const_vii.h" %include "blocks/add_const_vcc.h" +%include "blocks/and_bb.h" +%include "blocks/and_ss.h" +%include "blocks/and_ii.h" %include "blocks/char_to_float.h" %include "blocks/char_to_short.h" %include "blocks/complex_to_interleaved_short.h" @@ -159,6 +165,9 @@ GR_SWIG_BLOCK_MAGIC2(blocks, add_const_vff); GR_SWIG_BLOCK_MAGIC2(blocks, add_const_vss); GR_SWIG_BLOCK_MAGIC2(blocks, add_const_vii); GR_SWIG_BLOCK_MAGIC2(blocks, add_const_vcc); +GR_SWIG_BLOCK_MAGIC2(blocks, and_bb); +GR_SWIG_BLOCK_MAGIC2(blocks, and_ss); +GR_SWIG_BLOCK_MAGIC2(blocks, and_ii); GR_SWIG_BLOCK_MAGIC2(blocks, char_to_float); GR_SWIG_BLOCK_MAGIC2(blocks, char_to_short); GR_SWIG_BLOCK_MAGIC2(blocks, complex_to_interleaved_short); |