]> SALOME platform Git repositories - modules/smesh.git/blobdiff - src/SMDS/SMDS_MeshEdge.hxx
Salome HOME
Correct test script for mesh information
[modules/smesh.git] / src / SMDS / SMDS_MeshEdge.hxx
index b8a6c28ac67ef34511c5cb2b0a3aedb165f7bb19..c0108c2e4dec7a89d4d16d288d5169311d46cb8b 100644 (file)
@@ -41,7 +41,8 @@ class SMDS_EXPORT SMDS_MeshEdge:public SMDS_MeshElement
                          const SMDS_MeshNode * node2);
        void Print(std::ostream & OS) const;
 
-       SMDSAbs_ElementType GetType() const;
+       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);
@@ -50,8 +51,6 @@ class SMDS_EXPORT SMDS_MeshEdge:public SMDS_MeshElement
    * \brief Return node by its index
     * \param ind - node index
     * \retval const SMDS_MeshNode* - the node
-   * 
-   * Index is wrapped if it is out of a valid range
    */
   virtual const SMDS_MeshNode* GetNode(const int ind) const;