blob: 5dd781402d9cf905de42c352dd7198b10f7cd516 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* -*- c++ -*- */
%feature("autodoc", "1"); // generate python docstrings
%include "exception.i"
%import "gnuradio.i" // the common stuff
%{
#include "gnuradio_swig_bug_workaround.h" // mandatory bug fix
#include "fsm.h"
#include <stdexcept>
%}
// ----------------------------------------------------------------
%include "fsm.i"
%include "trellis_metric_type.h"
%include "trellis_generated.i"
|