root / gr-trellis / src / lib / trellis.i @ ebd3845a
History | View | Annotate | Download (521 Bytes)
| 1 | /* -*- c++ -*- */ |
|---|---|
| 2 | |
| 3 | %feature("autodoc", "1"); // generate python docstrings
|
| 4 | |
| 5 | %include "exception.i" |
| 6 | %import "gnuradio.i" // the common stuff |
| 7 | |
| 8 | %{
|
| 9 | #include "gnuradio_swig_bug_workaround.h" // mandatory bug fix |
| 10 | #include "fsm.h" |
| 11 | #include "interleaver.h" |
| 12 | #include "trellis_permutation.h" |
| 13 | #include <stdexcept> |
| 14 | %} |
| 15 | |
| 16 | // ---------------------------------------------------------------- |
| 17 | |
| 18 | %include "fsm.i" |
| 19 | %include "interleaver.i" |
| 20 | %include "trellis_permutation.i" |
| 21 | %include "trellis_metric_type.h" |
| 22 | |
| 23 | |
| 24 | %include "trellis_generated.i" |
| 25 |