]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMDS/SMDS_MeshCell.cxx
Salome HOME
fix bug of compactGrid() that the last block of nodes and elements is
[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 }