Salome HOME
PR: debug SMDS memimp
[modules/smesh.git] / src / SMDS / SMDS_MeshCell.hxx
1 #ifndef _SMDS_MESHCELL_HXX_
2 #define _SMDS_MESHCELL_HXX_
3
4 #include "SMDS_MeshElement.hxx"
5
6 /*!
7  * \brief Base class for all cells
8  */
9
10 class SMDS_EXPORT SMDS_MeshCell:public SMDS_MeshElement
11 {
12 public:
13   SMDS_MeshCell();
14   virtual ~SMDS_MeshCell();
15   inline void setVtkId(int vtkId) { myVtkID = vtkId; };
16   inline int getVtkId() const {return myVtkID; };
17   static int nbCells;
18 protected:
19   int myVtkID;
20 };
21
22 #endif