//
#include "StdMeshers_QuadToTriaAdaptor.hxx"
-#include <SMESH_Algo.hxx>
-#include <SMESH_MesherHelper.hxx>
+#include "SMDS_SetIterator.hxx"
+
+#include "SMESH_Algo.hxx"
+#include "SMESH_MesherHelper.hxx"
#include <IntAna_IntConicQuad.hxx>
#include <IntAna_Quadric.hxx>
{
return SMDSAbs_EntityType( Q2TAbs_TmpTriangle );
}
+ virtual SMDS_ElemIteratorPtr elementsIterator(SMDSAbs_ElementType type) const
+ {
+ if ( type == SMDSAbs_Node )
+ return SMDS_ElemIteratorPtr( new SMDS_NodeArrayElemIterator( _nodes, _nodes+3 ));
+ throw SALOME_Exception(LOCALIZED("Not implemented"));
+ }
};
//================================================================================