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