From 12e809327db22c0a27559954a65284f61064816f Mon Sep 17 00:00:00 2001 From: eap Date: Thu, 28 Feb 2013 11:36:28 +0000 Subject: [PATCH] 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); --- src/DriverGMF/DriverGMF_Write.hxx | 5 +++++ 1 file changed, 5 insertions(+) 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; }; -- 2.39.2