From 8c47ab24b4d9bd9b0522a1c4a3156e147c5ec816 Mon Sep 17 00:00:00 2001 From: Jonathan Lambrechts <jonathan.lambrechts@uclouvain.be> Date: Thu, 29 Nov 2012 08:29:06 +0000 Subject: [PATCH] dg:convert allmost all validation benchmarks to python3 --- wrappers/gmshpy/gmshGeo.i | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wrappers/gmshpy/gmshGeo.i b/wrappers/gmshpy/gmshGeo.i index 8ada18bed7..6390afe435 100644 --- a/wrappers/gmshpy/gmshGeo.i +++ b/wrappers/gmshpy/gmshGeo.i @@ -53,6 +53,10 @@ namespace std { %template(GFaceList) list<GFace*, std::allocator<GFace*> >; %template(GEdgeList) list<GEdge*, std::allocator<GEdge*> >; %template(GLevelsetVector) vector<gLevelset *, std::allocator<gLevelset *> >; + %template(IntVector) std::vector<int>; + %template(DoubleVector) std::vector<double, std::allocator<double> >; + %template(DoubleVectorVector) std::vector<std::vector<double, std::allocator<double> > >; + %template(StringVector) std::vector<std::string, std::allocator<std::string> >; } %include "GmshConfig.h" -- GitLab