blob: ec2424aa6b94391243e2603335017decd374a392 [file] [log] [blame]
piotr437f5462014-02-04 17:57:25 +01001/* -*- c++ -*- */
2
3#define GSM_API
4
5%include "gnuradio.i" // the common stuff
6
7//load generated python docstrings
8%include "gsm_swig_doc.i"
9
10%{
11#include "gsm/receiver.h"
piotr7c82b172014-02-08 14:15:27 +010012#include "gsm/bursts_printer.h"
piotrfaacc722014-07-20 23:48:32 +020013#include "gsm/get_bcch_or_ccch_bursts.h"
14#include "gsm/control_channels_decoder.h"
piotrdda22272014-08-04 11:31:54 +020015#include "gsm/extract_system_info.h"
piotr8a9f5922014-08-06 14:12:11 +020016#include "gsm/controlled_rotator_cc.h"
17#include "gsm/controlled_const_source_f.h"
piotr437f5462014-02-04 17:57:25 +010018%}
19
20
21%include "gsm/receiver.h"
22GR_SWIG_BLOCK_MAGIC2(gsm, receiver);
piotr7c82b172014-02-08 14:15:27 +010023%include "gsm/bursts_printer.h"
24GR_SWIG_BLOCK_MAGIC2(gsm, bursts_printer);
piotrd73f0bb2014-04-24 11:58:52 +020025
piotrfaacc722014-07-20 23:48:32 +020026%include "gsm/get_bcch_or_ccch_bursts.h"
27GR_SWIG_BLOCK_MAGIC2(gsm, get_bcch_or_ccch_bursts);
28%include "gsm/control_channels_decoder.h"
29GR_SWIG_BLOCK_MAGIC2(gsm, control_channels_decoder);
piotrdda22272014-08-04 11:31:54 +020030%include "gsm/extract_system_info.h"
31GR_SWIG_BLOCK_MAGIC2(gsm, extract_system_info);
piotr8a9f5922014-08-06 14:12:11 +020032%include "gsm/controlled_rotator_cc.h"
33GR_SWIG_BLOCK_MAGIC2(gsm, controlled_rotator_cc);
34%include "gsm/controlled_const_source_f.h"
35GR_SWIG_BLOCK_MAGIC2(gsm, controlled_const_source_f);