mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-16 02:28:34 +05:00
19 lines
247 B
C++
19 lines
247 B
C++
|
#include "SMDS_MeshCell.hxx"
|
||
|
#include "utilities.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
int SMDS_MeshCell::nbCells = 0;
|
||
|
|
||
|
SMDS_MeshCell::SMDS_MeshCell() :
|
||
|
SMDS_MeshElement(-1)
|
||
|
{
|
||
|
nbCells++;
|
||
|
myVtkID = -1;
|
||
|
}
|
||
|
|
||
|
SMDS_MeshCell::~SMDS_MeshCell()
|
||
|
{
|
||
|
nbCells--;
|
||
|
}
|