diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/gras/CMakeLists.txt | 1 | ||||
-rw-r--r-- | include/gras/hier_block.i | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/include/gras/CMakeLists.txt b/include/gras/CMakeLists.txt index 0856942..83ff432 100644 --- a/include/gras/CMakeLists.txt +++ b/include/gras/CMakeLists.txt @@ -9,6 +9,7 @@ install(FILES element.i gras.hpp hier_block.hpp + hier_block.i io_signature.hpp io_signature.i sbuffer.hpp diff --git a/include/gras/hier_block.i b/include/gras/hier_block.i new file mode 100644 index 0000000..67cf74e --- /dev/null +++ b/include/gras/hier_block.i @@ -0,0 +1,13 @@ +// Copyright (C) by Josh Blum. See LICENSE.txt for licensing information. + +#ifndef INCLUDED_GRAS_HIER_BLOCK_I +#define INCLUDED_GRAS_HIER_BLOCK_I + +%{ +#include <gras/hier_block.hpp> +%} + +%include <gras/element.i> +%include <gras/hier_block.hpp> + +#endif /*INCLUDED_GRAS_HIER_BLOCK_I*/ |