Skip to content
Snippets Groups Projects
Commit 2d077f2e authored by Jonathan Lambrechts's avatar Jonathan Lambrechts
Browse files

add bindings for std::vector<std::vector<GFace*> > so that volumes can

be created from python
parent ef56f708
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,7 @@ namespace std {
%template(MVertexVector) vector< MVertex *,std::allocator< MVertex * > >;
%template(MElementVector) vector< MElement *,std::allocator< MElement * > >;
%template(GEdgeVectorVector) vector< std::vector< GEdge *,std::allocator< GEdge * > >,std::allocator< std::vector< GEdge *,std::allocator< GEdge * > > > >;
%template(GFaceVectorVector) vector< std::vector< GFace *,std::allocator< GFace * > >,std::allocator< std::vector< GFace *,std::allocator< GFace * > > > >;
%template(GFaceList) list<GFace*, std::allocator<GFace*> >;
%template(GEdgeList) list<GEdge*, std::allocator<GEdge*> >;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment