From: eap Date: Thu, 28 Feb 2013 11:36:28 +0000 (+0000) Subject: 0022134: DriverGMF : reading quadratic meshes X-Git-Tag: pluginMGCleaner~97 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=12e809327db22c0a27559954a65284f61064816f;p=modules%2Fsmesh.git 0022134: DriverGMF : reading quadratic meshes Fix errors of import/export of meshes including both linear and quadratic elements. + SMDS_ElemIteratorPtr elementIterator(SMDSAbs_ElementType type); + SMDS_ElemIteratorPtr elementIterator(SMDSAbs_EntityType type); + SMDS_ElemIteratorPtr elementIterator(SMDSAbs_GeometryType type); --- diff --git a/src/DriverGMF/DriverGMF_Write.hxx b/src/DriverGMF/DriverGMF_Write.hxx index 0e8ee4f70..b66b3d946 100644 --- a/src/DriverGMF/DriverGMF_Write.hxx +++ b/src/DriverGMF/DriverGMF_Write.hxx @@ -31,6 +31,7 @@ #include "Driver_SMESHDS_Mesh.h" #include "SMDSAbs_ElementType.hxx" +#include "SMDS_ElemIterator.hxx" /*! * \brief Driver Writing a mesh into a GMF file. @@ -51,6 +52,10 @@ public: private: + SMDS_ElemIteratorPtr elementIterator(SMDSAbs_ElementType type); + SMDS_ElemIteratorPtr elementIterator(SMDSAbs_EntityType type); + SMDS_ElemIteratorPtr elementIterator(SMDSAbs_GeometryType type); + bool _exportRequiredGroups; };