blob: dac760265ab369edc63551051d0c935c596bc0fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 <stdexcept>
#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);
};
// ----------------------------------------------------------------
|