mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-12 14:23:07 +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--;
|
||
|
}
|