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=f4b9fa2dd756a2917bd1caffa0ba7e65e5109ee1;hb=6d32f944a0a115b6419184c50b57bf7c4eef5786;hpb=88141f757b048eaa5aae0be49faaf274448bbcaf diff --git a/src/SMDS/SMDS_Mesh0DElement.hxx b/src/SMDS/SMDS_Mesh0DElement.hxx index f4b9fa2dd..2cf8de1da 100644 --- a/src/SMDS/SMDS_Mesh0DElement.hxx +++ b/src/SMDS/SMDS_Mesh0DElement.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 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 @@ -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