summaryrefslogtreecommitdiff
path: root/gr-howto-write-a-block/swig/howto.i
blob: 9a37ea228af752a05f23aaf5c91c11a748a4103c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* -*- c++ -*- */

%include "gnuradio.i"			// the common stuff

%{
#include "howto_square_ff.h"
#include "howto_square2_ff.h"
%}

%include "howto_square_ff.i"
%include "howto_square2_ff.i"

#if SWIGGUILE
%scheme %{
(load-extension "libguile-howto" "scm_init_gnuradio_howto_module")
%}

%goops %{
(use-modules (gnuradio gnuradio_core_runtime))
%}
#endif