diff options
author | Piotr Krysik <perper@o2.pl> | 2009-04-07 17:25:12 +0200 |
---|---|---|
committer | Piotr Krysik <perper@o2.pl> | 2009-04-07 17:25:12 +0200 |
commit | f0457b0b5888fd4d652531b987c9d113e8d1234a (patch) | |
tree | 587b254996a2259ef0db0f3a135d01e19ef7a8f0 /src/lib/gsm_receiver.i | |
parent | 39a50c763240da578a05a6b651776804786d813a (diff) |
New empty gsm-receiver signal block with its own library - compiles
Diffstat (limited to 'src/lib/gsm_receiver.i')
-rw-r--r-- | src/lib/gsm_receiver.i | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/src/lib/gsm_receiver.i b/src/lib/gsm_receiver.i index 3d46ab4..d5ca598 100644 --- a/src/lib/gsm_receiver.i +++ b/src/lib/gsm_receiver.i @@ -7,8 +7,7 @@ %{ #include "gnuradio_swig_bug_workaround.h" // mandatory bug fix -#include "howto_square_ff.h" -#include "howto_square2_ff.h" +#include "gsm_receiver_cf.h" #include <stdexcept> %} @@ -21,24 +20,14 @@ * This does some behind-the-scenes magic so we can * access howto_square_ff from python as howto.square_ff */ -GR_SWIG_BLOCK_MAGIC(howto,square_ff); +GR_SWIG_BLOCK_MAGIC(gsm,receiver_cf); -howto_square_ff_sptr howto_make_square_ff (); +gsm_receiver_cf_sptr gsm_make_receiver_cf (); -class howto_square_ff : public gr_block +class gsm_receiver_cf : public gr_block { private: - howto_square_ff (); + gsm_receiver_cf (); }; // ---------------------------------------------------------------- - -GR_SWIG_BLOCK_MAGIC(howto,square2_ff); - -howto_square2_ff_sptr howto_make_square2_ff (); - -class howto_square2_ff : public gr_sync_block -{ -private: - howto_square2_ff (); -}; |