Fix for bug 81 (SWIG implicit module naming). Thanks to Maitland Bottoms

(bottoms@debian.org) for the patch.
This commit is contained in:
Nick Foster 2016-05-01 19:23:46 -07:00
parent 514414f6b3
commit bdfcc42b39

17
swig/air_modes_swig.i Normal file
View File

@ -0,0 +1,17 @@
/* -*- c++ -*- */
#define AIR_MODES_API
%include "gnuradio.i"
%{
#include "gr_air_modes/preamble.h"
#include "gr_air_modes/slicer.h"
%}
%include "gr_air_modes/preamble.h"
%include "gr_air_modes/slicer.h"
GR_SWIG_BLOCK_MAGIC2(air_modes,preamble);
GR_SWIG_BLOCK_MAGIC2(air_modes,slicer);