mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-11-01 07:36:22 +00:00
18 lines
247 B
OpenEdge ABL
18 lines
247 B
OpenEdge ABL
|
/* -*- c++ -*- */
|
||
|
|
||
|
#define GN3S_API
|
||
|
|
||
|
%include "gnuradio.i" // the common stuff
|
||
|
|
||
|
//load generated python docstrings
|
||
|
%include "gn3s_swig_doc.i"
|
||
|
|
||
|
|
||
|
%{
|
||
|
#include "gn3s_source_cc.h"
|
||
|
%}
|
||
|
|
||
|
GR_SWIG_BLOCK_MAGIC(gn3s,source_cc);
|
||
|
%include "gn3s_source_cc.h"
|
||
|
|