X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMDS%2FSMDS_Mesh0DElement.hxx;h=2cf8de1daefd81300007ed9e2eaee0b031ba31c1;hp=d0c07696067c9a5dd3237f0c34b90f2ddcc90e10;hb=6d32f944a0a115b6419184c50b57bf7c4eef5786;hpb=fd96feab4b58b9ebe8706e44b35006e0122d682e;ds=sidebyside diff --git a/src/SMDS/SMDS_Mesh0DElement.hxx b/src/SMDS/SMDS_Mesh0DElement.hxx index d0c076960..2cf8de1da 100644 --- a/src/SMDS/SMDS_Mesh0DElement.hxx +++ b/src/SMDS/SMDS_Mesh0DElement.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2019 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 @@ -17,7 +17,7 @@ // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // -// SMESH SMDS : implementaion of Salome mesh data structure +// SMESH SMDS : implementation of Salome mesh data structure // File : SMDS_Mesh0DElement.hxx // Module : SMESH // @@ -28,28 +28,15 @@ #include "SMDS_MeshCell.hxx" -#include - +/*! + * \brief 0D mesh element. This type is not allocated. + * It is only used as function argument type to provide more clear semantic. + */ class SMDS_EXPORT SMDS_Mesh0DElement: public SMDS_MeshCell { public: - SMDS_Mesh0DElement (const SMDS_MeshNode * node); - virtual bool ChangeNodes(const SMDS_MeshNode* nodes[], const int nbNodes); - virtual void Print (std::ostream & OS) const; - - virtual SMDSAbs_ElementType GetType() const; - virtual vtkIdType GetVtkType() const; - virtual SMDSAbs_EntityType GetEntityType() const {return SMDSEntity_0D;} - virtual SMDSAbs_GeometryType GetGeomType() const { return SMDSGeom_POINT; } - virtual const SMDS_MeshNode* GetNode (const int ind) const; - virtual int NbNodes() const; - virtual int NbEdges() const; - - protected: - virtual SMDS_ElemIteratorPtr elementsIterator (SMDSAbs_ElementType type) const; - protected: - const SMDS_MeshNode* myNode; + static SMDSAbs_ElementType Type() { return SMDSAbs_0DElement; } }; #endif