mirror of
https://github.com/hb9fxq/gr-digitalhf
synced 2024-11-05 05:55:53 +00:00
16 lines
281 B
OpenEdge ABL
16 lines
281 B
OpenEdge ABL
|
/* -*- c++ -*- */
|
||
|
|
||
|
#define DIGITALHF_API
|
||
|
|
||
|
%include "gnuradio.i" // the common stuff
|
||
|
|
||
|
//load generated python docstrings
|
||
|
%include "digitalhf_swig_doc.i"
|
||
|
|
||
|
%{
|
||
|
#include "digitalhf/adaptive_dfe.h"
|
||
|
%}
|
||
|
|
||
|
%include "digitalhf/adaptive_dfe.h"
|
||
|
GR_SWIG_BLOCK_MAGIC2(digitalhf, adaptive_dfe);
|