diff options
author | Josh Blum | 2012-12-05 22:07:00 -0800 |
---|---|---|
committer | Josh Blum | 2012-12-05 22:07:00 -0800 |
commit | ae970f90e526b2ad32faf497caea1297eb46a195 (patch) | |
tree | 647481fbee81f3d489f666570c55e24a6b68943f /python/gras | |
parent | e9abed0e1cb28e2c5761910e523fb01fe38f2527 (diff) | |
download | sandhi-ae970f90e526b2ad32faf497caea1297eb46a195.tar.gz sandhi-ae970f90e526b2ad32faf497caea1297eb46a195.tar.bz2 sandhi-ae970f90e526b2ad32faf497caea1297eb46a195.zip |
moved tag iter into its own header
Diffstat (limited to 'python/gras')
-rw-r--r-- | python/gras/GRAS_HierBlock.i | 6 | ||||
-rw-r--r-- | python/gras/__init__.py | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/python/gras/GRAS_HierBlock.i b/python/gras/GRAS_HierBlock.i index ed41d39..9cd705e 100644 --- a/python/gras/GRAS_HierBlock.i +++ b/python/gras/GRAS_HierBlock.i @@ -43,14 +43,10 @@ struct PyTSPhondler #include <gras/top_block.hpp> %} -%include <gras/gras.hpp> -%include <gras/element.i> -%include <gras/io_signature.i> - //////////////////////////////////////////////////////////////////////// // pull in hier and top interface //////////////////////////////////////////////////////////////////////// -%include <gras/hier_block.hpp> +%include <gras/hier_block.i> %include <gras/top_block.hpp> //////////////////////////////////////////////////////////////////////// diff --git a/python/gras/__init__.py b/python/gras/__init__.py index e99d246..2bdbc3a 100644 --- a/python/gras/__init__.py +++ b/python/gras/__init__.py @@ -2,7 +2,7 @@ from PMC import * from GRAS_SBuffer import SBufferConfig, SBuffer -from GRAS_Tags import Tag, TagIter, StreamTag, PacketMsg +from GRAS_Tags import Tag, StreamTag, PacketMsg from GRAS_IOSignature import IOSignature from GRAS_Block import Block from GRAS_HierBlock import HierBlock, TopBlock |