diff options
author | Josh Blum | 2012-11-09 01:56:44 -0800 |
---|---|---|
committer | Josh Blum | 2012-11-09 01:56:44 -0800 |
commit | 6779b36583be0d54cee2fb3931dfd31dcde541f6 (patch) | |
tree | 1f023702254c7c227794e85b33af52fb3e24e223 | |
parent | a6e4b123a003b6a273d2ed674efbfb08bf949043 (diff) | |
download | sandhi-6779b36583be0d54cee2fb3931dfd31dcde541f6.tar.gz sandhi-6779b36583be0d54cee2fb3931dfd31dcde541f6.tar.bz2 sandhi-6779b36583be0d54cee2fb3931dfd31dcde541f6.zip |
swig template std::vector<gras::Tag>
-rw-r--r-- | python/gras/GRAS_Block.i | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/gras/GRAS_Block.i b/python/gras/GRAS_Block.i index 1c04cb6..dc0e205 100644 --- a/python/gras/GRAS_Block.i +++ b/python/gras/GRAS_Block.i @@ -72,8 +72,9 @@ struct PyGILPhondler // SWIG up the representation for IO work arrays //////////////////////////////////////////////////////////////////////// %include <std_vector.i> -%template (IntVec) std::vector<size_t>; -%template (VoidStarVec) std::vector<void *>; +%template () std::vector<size_t>; +%template () std::vector<void *>; +%template () std::vector<gras::Tag>; //////////////////////////////////////////////////////////////////////// // Pull in the implementation goodies |