From 59ea3a8a82e6f166b80fc489945c43fdc8764ea0 Mon Sep 17 00:00:00 2001 From: Piotr Krysik Date: Mon, 20 Apr 2009 19:56:50 +0200 Subject: added non-traced files --- src/lib/gsm.i | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/lib/gsm.i (limited to 'src/lib/gsm.i') diff --git a/src/lib/gsm.i b/src/lib/gsm.i new file mode 100644 index 0000000..dac7602 --- /dev/null +++ b/src/lib/gsm.i @@ -0,0 +1,36 @@ +/* -*- c++ -*- */ + +%feature("autodoc", "1"); // generate python docstrings + +%include "exception.i" +%import "gnuradio.i" // the common stuff + +%include "gsm_constants.h" + +%{ +#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix +#include "gsm_receiver_cf.h" +#include +#include "gsm_constants.h" +%} + +// ---------------------------------------------------------------- + +/* + * First arg is the package prefix. + * Second arg is the name of the class minus the prefix. + * + * This does some behind-the-scenes magic so we can + * access howto_square_ff from python as howto.square_ff + */ +GR_SWIG_BLOCK_MAGIC(gsm,receiver_cf); + +gsm_receiver_cf_sptr gsm_make_receiver_cf ( gr_feval_dd *tuner, int osr); + +class gsm_receiver_cf : public gr_block +{ +private: + gsm_receiver_cf ( gr_feval_dd *tuner, int osr); +}; + +// ---------------------------------------------------------------- -- cgit v1.2.3