diff options
author | Josh Blum | 2013-06-27 02:00:42 -0700 |
---|---|---|
committer | Josh Blum | 2013-06-27 02:00:42 -0700 |
commit | 1f8d397eb2ac57af561c60eb9adc6fd73826beb0 (patch) | |
tree | 6a40d1cf9cc85c9192f4d8cba5564e58f97f4bf0 /include | |
parent | 498fb3ae976f6128daefeb3a7f503985c11f8c91 (diff) | |
download | sandhi-1f8d397eb2ac57af561c60eb9adc6fd73826beb0.tar.gz sandhi-1f8d397eb2ac57af561c60eb9adc6fd73826beb0.tar.bz2 sandhi-1f8d397eb2ac57af561c60eb9adc6fd73826beb0.zip |
gras: found this nifty little package argument
Diffstat (limited to 'include')
-rw-r--r-- | include/gras/block.i | 2 | ||||
-rw-r--r-- | include/gras/element.i | 2 | ||||
-rw-r--r-- | include/gras/hier_block.i | 2 | ||||
-rw-r--r-- | include/gras/sbuffer.i | 2 | ||||
-rw-r--r-- | include/gras/tags.i | 2 | ||||
-rw-r--r-- | include/gras/time_tag.i | 2 | ||||
-rw-r--r-- | include/gras/top_block.i | 2 |
7 files changed, 10 insertions, 4 deletions
diff --git a/include/gras/block.i b/include/gras/block.i index ffb361c..2de2c98 100644 --- a/include/gras/block.i +++ b/include/gras/block.i @@ -3,7 +3,7 @@ #ifndef INCLUDED_GRAS_BLOCK_I #define INCLUDED_GRAS_BLOCK_I -%module GRAS_Block +%module (package="gras") GRAS_Block %{ #include <gras/block.hpp> diff --git a/include/gras/element.i b/include/gras/element.i index f8248f8..eb4d039 100644 --- a/include/gras/element.i +++ b/include/gras/element.i @@ -3,7 +3,7 @@ #ifndef INCLUDED_GRAS_ELEMENT_I #define INCLUDED_GRAS_ELEMENT_I -%module GRAS_Element +%module (package="gras") GRAS_Element %{ #include <gras/element.hpp> diff --git a/include/gras/hier_block.i b/include/gras/hier_block.i index c33156f..e3f8182 100644 --- a/include/gras/hier_block.i +++ b/include/gras/hier_block.i @@ -3,7 +3,7 @@ #ifndef INCLUDED_GRAS_HIER_BLOCK_I #define INCLUDED_GRAS_HIER_BLOCK_I -%module GRAS_HierBlock +%module (package="gras") GRAS_HierBlock %{ #include <gras/hier_block.hpp> diff --git a/include/gras/sbuffer.i b/include/gras/sbuffer.i index 69b4833..2e86d03 100644 --- a/include/gras/sbuffer.i +++ b/include/gras/sbuffer.i @@ -3,6 +3,8 @@ #ifndef INCLUDED_GRAS_SBUFFER_I #define INCLUDED_GRAS_SBUFFER_I +%module (package="gras") GRAS_SBuffer + %{ #include <gras/gras.hpp> #include <gras/sbuffer.hpp> diff --git a/include/gras/tags.i b/include/gras/tags.i index bf2bdb4..23634b0 100644 --- a/include/gras/tags.i +++ b/include/gras/tags.i @@ -3,6 +3,8 @@ #ifndef INCLUDED_GRAS_TAGS_I #define INCLUDED_GRAS_TAGS_I +%module (package="gras") GRAS_Tags + %{ #include <gras/tags.hpp> %} diff --git a/include/gras/time_tag.i b/include/gras/time_tag.i index 42deed7..5ffc099 100644 --- a/include/gras/time_tag.i +++ b/include/gras/time_tag.i @@ -3,6 +3,8 @@ #ifndef INCLUDED_GRAS_TIME_TAG_I #define INCLUDED_GRAS_TIME_TAG_I +%module (package="gras") GRAS_TimeTag + %{ #include <gras/time_tag.hpp> %} diff --git a/include/gras/top_block.i b/include/gras/top_block.i index cda01de..23a4275 100644 --- a/include/gras/top_block.i +++ b/include/gras/top_block.i @@ -3,7 +3,7 @@ #ifndef INCLUDED_GRAS_TOP_BLOCK_I #define INCLUDED_GRAS_TOP_BLOCK_I -%module GRAS_TopBlock +%module (package="gras") GRAS_TopBlock %{ #include <gras/top_block.hpp> |