Branch data Line data Source code
1 : : #include "PartitionCoSurf.hpp"
2 : : #include "PartitionShell.hpp"
3 : : #include "PartitionSurface.hpp"
4 : :
5 : 0 : PartitionCoSurf::~PartitionCoSurf()
6 : : {
7 [ # # ]: 0 : if( myShell )
8 : : {
9 : 0 : myShell->remove( this );
10 : 0 : myShell = 0;
11 : : }
12 [ # # ]: 0 : if( mySurface )
13 : : {
14 : 0 : mySurface->remove( this );
15 : 0 : mySurface = 0;
16 : : }
17 : :
18 : 0 : mySense = CUBIT_UNKNOWN;
19 [ # # ][ # # ]: 0 : assert( !shellNext && !surfaceNext );
20 : 0 : }
21 : :
|