diff options
Diffstat (limited to 'gr-howto-write-a-block/swig/howto_swig.i')
-rw-r--r-- | gr-howto-write-a-block/swig/howto_swig.i | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gr-howto-write-a-block/swig/howto_swig.i b/gr-howto-write-a-block/swig/howto_swig.i index dd662b5e52..162bc6a901 100644 --- a/gr-howto-write-a-block/swig/howto_swig.i +++ b/gr-howto-write-a-block/swig/howto_swig.i @@ -7,14 +7,13 @@ //load generated python docstrings %include "howto_swig_doc.i" - %{ -#include "howto_square_ff.h" -#include "howto_square2_ff.h" +#include "howto/square_ff.h" +#include "howto/square2_ff.h" %} -GR_SWIG_BLOCK_MAGIC(howto,square_ff); -%include "howto_square_ff.h" +%include "howto/square_ff.h" +%include "howto/square2_ff.h" -GR_SWIG_BLOCK_MAGIC(howto,square2_ff); -%include "howto_square2_ff.h" +GR_SWIG_BLOCK_MAGIC2(howto, square_ff); +GR_SWIG_BLOCK_MAGIC2(howto, square2_ff); |