Salome HOME
Merge branch 'V9_9_BR'
[modules/smesh.git] / src / SMDS / SMDS_MeshEdge.hxx
index 423d96241f8e11cadd1cfc0d0df91296e4c7f3a7..ad9e4a7383166bbe6d732d92dbce57a3fc2cffca 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2010-2016  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2010-2022  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 
 #include "SMDS_MeshCell.hxx"
 
+/*!
+ * \brief Edge mesh element. This type is not allocated.
+ *        It is only used as function argument type to provide more clear semantic.
+ */
 class SMDS_EXPORT SMDS_MeshEdge: public SMDS_MeshCell
 {
-        
  public:
-  virtual SMDSAbs_ElementType  GetType() const;
-  virtual vtkIdType            GetVtkType() const;
+  virtual SMDSAbs_ElementType  GetType()     const { return SMDSAbs_Edge; }
   virtual SMDSAbs_GeometryType GetGeomType() const { return SMDSGeom_EDGE; }
+
+  static SMDSAbs_ElementType Type() { return SMDSAbs_Edge; }
 };
 #endif