X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2FSMDS_FaceOfEdges.hxx;h=cd8e5dd8f29ee2ca94343860f1ec1b3e86a9191a;hb=ee2c38087265d128e7d3febc042834b08539b504;hp=4140207558988b6fdeba3bcd2b648592c4957f55;hpb=c3bf92bd87b770fd81631a3853f7f5bb1ac6a4e8;p=modules%2Fsmesh.git diff --git a/src/SMDS/SMDS_FaceOfEdges.hxx b/src/SMDS/SMDS_FaceOfEdges.hxx index 414020755..cd8e5dd8f 100644 --- a/src/SMDS/SMDS_FaceOfEdges.hxx +++ b/src/SMDS/SMDS_FaceOfEdges.hxx @@ -22,15 +22,17 @@ #ifndef _SMDS_FaceOfEdges_HeaderFile #define _SMDS_FaceOfEdges_HeaderFile -#include #include "SMDS_MeshFace.hxx" #include "SMDS_MeshEdge.hxx" #include "SMDS_Iterator.hxx" +#include + + class SMDS_FaceOfEdges:public SMDS_MeshFace { public: - void Print(ostream & OS) const; + void Print(std::ostream & OS) const; SMDS_FaceOfEdges(const SMDS_MeshEdge* edge1, const SMDS_MeshEdge* edge2, const SMDS_MeshEdge* edge3); @@ -49,7 +51,8 @@ class SMDS_FaceOfEdges:public SMDS_MeshFace elementsIterator(SMDSAbs_ElementType type) const; private: - vector myEdges; + const SMDS_MeshEdge* myEdges[4]; + int myNbEdges; };