blob: e3f8182c492c6f7d149d66a6bded24e87412c962 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (C) by Josh Blum. See LICENSE.txt for licensing information.
#ifndef INCLUDED_GRAS_HIER_BLOCK_I
#define INCLUDED_GRAS_HIER_BLOCK_I
%module (package="gras") GRAS_HierBlock
%{
#include <gras/hier_block.hpp>
%}
%import <gras/element.i>
%include <gras/hier_block.hpp>
#endif /*INCLUDED_GRAS_HIER_BLOCK_I*/
|