Shuffle around wrapper statements to fix setting arguments

This commit is contained in:
Thomas Krijnen
2015-01-10 23:01:52 +00:00
parent 8581fed39b
commit 511e83c2c6
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -41,13 +41,13 @@
#include "../ifcparse/IfcLateBoundEntity.h"
%}
%include "IfcGeomWrapper.i"
%include "IfcParseWrapper.i"
namespace std {
%template(int_vector) vector<int>;
%template(float_vector) vector<float>;
%template(double_vector) vector<double>;
%template(string_vector) vector<std::string>;
%template(material_vector) vector<IfcGeom::Material>;
};
%include "IfcGeomWrapper.i"
%include "IfcParseWrapper.i"
};