]> SALOME platform Git repositories - modules/smesh.git/blobdiff - src/SMDS/SMDS_Mesh0DElement.hxx
Salome HOME
Revert "23418: [OCC] Mesh: Minimization of memory usage of SMESH"
[modules/smesh.git] / src / SMDS / SMDS_Mesh0DElement.hxx
index 1ba4d4b5791bf8ae3b058c7a07ad59db48e67d75..f4b9fa2dd756a2917bd1caffa0ba7e65e5109ee1 100644 (file)
 
 #include "SMDS_MeshCell.hxx"
 
-/*!
- * \brief 0D mesh element. This type is not allocated.
- *        It is only used as function argument type to provide more clear semantic.
- */
+#include <iostream>
+
 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;
 
-  static SMDSAbs_ElementType Type() { return SMDSAbs_0DElement; }
+ protected:
+  const SMDS_MeshNode* myNode;
 };
 
 #endif