Salome HOME
merge from branch BR_SMDS_MEMIMP 29 nov 2010
[modules/smesh.git] / src / SMDS / SMDS_MeshCell.cxx
1 #include "SMDS_MeshCell.hxx"
2 #include "utilities.h"
3
4 using namespace std;
5
6 int SMDS_MeshCell::nbCells = 0;
7
8 SMDS_MeshCell::SMDS_MeshCell() :
9   SMDS_MeshElement(-1)
10 {
11   nbCells++;
12   myVtkID = -1;
13 }
14
15 SMDS_MeshCell::~SMDS_MeshCell()
16 {
17   nbCells--;
18 }