Salome HOME
23418: [OCC] Mesh: Minimization of memory usage of SMESH
[modules/smesh.git] / src / SMDS / SMDS_Mesh0DElement.hxx
index f4b9fa2dd756a2917bd1caffa0ba7e65e5109ee1..1ba4d4b5791bf8ae3b058c7a07ad59db48e67d75 100644 (file)
 
 #include "SMDS_MeshCell.hxx"
 
-#include <iostream>
-
+/*!
+ * \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