X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMDS%2FSMDS_FaceOfEdges.hxx;fp=src%2FSMDS%2FSMDS_FaceOfEdges.hxx;h=6e8e7b8d620ffec449a973ae1047942c5e1bc2a5;hp=4140207558988b6fdeba3bcd2b648592c4957f55;hb=e4737e85f0da6d3f90fd08f6be1c2825195fe16f;hpb=51569f091c2d18be76ea9bd3e68ca0247cc731c3 diff --git a/src/SMDS/SMDS_FaceOfEdges.hxx b/src/SMDS/SMDS_FaceOfEdges.hxx index 414020755..6e8e7b8d6 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,7 @@ class SMDS_FaceOfEdges:public SMDS_MeshFace elementsIterator(SMDSAbs_ElementType type) const; private: - vector myEdges; + std::vector myEdges; };