X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2FSMDS_MeshEdge.hxx;h=f600f0dd57c1dc3df64baad45f674ad5907cbcea;hb=062f1da5dde14e9ca8755c2eda44cbe8850f1d3a;hp=84998e1294905e7a564603bf17e52f64092c272a;hpb=b6986ac1b189728ef4f2a486e035957ffa63272d;p=modules%2Fsmesh.git diff --git a/src/SMDS/SMDS_MeshEdge.hxx b/src/SMDS/SMDS_MeshEdge.hxx index 84998e129..f600f0dd5 100644 --- a/src/SMDS/SMDS_MeshEdge.hxx +++ b/src/SMDS/SMDS_MeshEdge.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -19,6 +19,7 @@ // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + // SMESH SMDS : implementaion of Salome mesh data structure // File : SMDS_MeshEdge.hxx // Module : SMESH @@ -35,16 +36,17 @@ class SMDS_EXPORT SMDS_MeshEdge:public SMDS_MeshElement { public: - SMDS_MeshEdge(const SMDS_MeshNode * node1, + SMDS_MeshEdge(const SMDS_MeshNode * node1, const SMDS_MeshNode * node2); bool ChangeNodes(const SMDS_MeshNode * node1, const SMDS_MeshNode * node2); - void Print(std::ostream & OS) const; + void Print(std::ostream & OS) const; - SMDSAbs_ElementType GetType() const; - int NbNodes() const; - int NbEdges() const; - friend bool operator<(const SMDS_MeshEdge& e1, const SMDS_MeshEdge& e2); + virtual SMDSAbs_ElementType GetType() const; + virtual SMDSAbs_EntityType GetEntityType() const { return SMDSEntity_Edge; } + int NbNodes() const; + int NbEdges() const; + friend bool operator<(const SMDS_MeshEdge& e1, const SMDS_MeshEdge& e2); /*! * \brief Return node by its index @@ -54,11 +56,11 @@ class SMDS_EXPORT SMDS_MeshEdge:public SMDS_MeshElement virtual const SMDS_MeshNode* GetNode(const int ind) const; protected: - SMDS_ElemIteratorPtr - elementsIterator(SMDSAbs_ElementType type) const; + SMDS_ElemIteratorPtr + elementsIterator(SMDSAbs_ElementType type) const; protected: - const SMDS_MeshNode* myNodes[3]; + const SMDS_MeshNode* myNodes[3]; }; #endif