Files
GnuRadio/gr-jay/swig/jay_swig.i
T
jens c5e7d1f41f - refactored
git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@500 b431acfa-c32f-4a4a-93f1-934dc6c82436
2019-05-29 11:14:21 +00:00

42 lines
998 B
OpenEdge ABL

/* -*- c++ -*- */
#define JAY_API
%include "gnuradio.i" // the common stuff
//load generated python docstrings
%include "jay_swig_doc.i"
%{
#include "jay/square_ff.h"
#include "jay/square2_ff.h"
#include "jay/bit_slicer.h"
#include "jay/pocsag_decoder.h"
#include "jay/bit_packer.h"
#include "jay/add.h"
#include "jay/peak_detect.h"
#include "jay/message_debug.h"
#include "jay/squelch.h"
%}
%include "jay/square_ff.h"
GR_SWIG_BLOCK_MAGIC2(jay, square_ff);
%include "jay/square2_ff.h"
GR_SWIG_BLOCK_MAGIC2(jay, square2_ff);
%include "jay/bit_slicer.h"
GR_SWIG_BLOCK_MAGIC2(jay, bit_slicer);
%include "jay/pocsag_decoder.h"
GR_SWIG_BLOCK_MAGIC2(jay, pocsag_decoder);
%include "jay/bit_packer.h"
GR_SWIG_BLOCK_MAGIC2(jay, bit_packer);
%include "jay/add.h"
GR_SWIG_BLOCK_MAGIC2(jay, add);
%include "jay/peak_detect.h"
GR_SWIG_BLOCK_MAGIC2(jay, peak_detect);
%include "jay/message_debug.h"
GR_SWIG_BLOCK_MAGIC2(jay, message_debug);
%include "jay/squelch.h"
GR_SWIG_BLOCK_MAGIC2(jay, squelch);