Salome HOME
PR: debug SMDS memimp
[modules/smesh.git] / src / SMDS / SMDS_MeshElement.cxx
index f309847d171df8dde2cac977276c1b38dabf2809..6f5b5eb54b8844b645a2924c0b17449587932c89 100644 (file)
@@ -34,8 +34,6 @@
 
 using namespace std;
 
-int SMDS_MeshCell::nbCells = 0;
-
 SMDS_MeshElement::SMDS_MeshElement(int ID):myID(ID), myMeshId(-1), myShapeId(-1), myIdInShape(-1)
 {
 }
@@ -245,14 +243,3 @@ int SMDS_MeshElement::GetNodeIndex( const SMDS_MeshNode* node ) const
       return i;
   return -1;
 }
-
-SMDS_MeshCell::SMDS_MeshCell() : SMDS_MeshElement(-1)
-{
-  nbCells++;
-  myVtkID = -1;
-};
-
-SMDS_MeshCell::~SMDS_MeshCell()
-{
-  nbCells--;
-}