blob: 724efb3cbcf88046855fe12f9426fb155a4ec6ad [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"
piotr437f5462014-02-04 17:57:25 +010016%}
17
18
19%include "gsm/receiver.h"
20GR_SWIG_BLOCK_MAGIC2(gsm, receiver);
piotr7c82b172014-02-08 14:15:27 +010021%include "gsm/bursts_printer.h"
22GR_SWIG_BLOCK_MAGIC2(gsm, bursts_printer);
piotrd73f0bb2014-04-24 11:58:52 +020023
piotrfaacc722014-07-20 23:48:32 +020024%include "gsm/get_bcch_or_ccch_bursts.h"
25GR_SWIG_BLOCK_MAGIC2(gsm, get_bcch_or_ccch_bursts);
26%include "gsm/control_channels_decoder.h"
27GR_SWIG_BLOCK_MAGIC2(gsm, control_channels_decoder);
piotrdda22272014-08-04 11:31:54 +020028%include "gsm/extract_system_info.h"
29GR_SWIG_BLOCK_MAGIC2(gsm, extract_system_info);