summaryrefslogtreecommitdiff
path: root/inc/STEPSelections_Counter.lxx
blob: 9728fbb0b2ae7b86e67e11c1a19f5adcfea388a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// File:	STEPSelections_Counter.lxx
// Created:	Thu Feb 11 18:50:10 1999
// Author:	Pavel DURANDIN
//		<pdn@friendox.nnov.matra-dtv.fr>

inline Standard_Integer STEPSelections_Counter::NbInstancesOfFaces() const
{
  return myNbFaces;
}

inline Standard_Integer STEPSelections_Counter::NbInstancesOfShells() const
{
  return myNbShells;
}

inline Standard_Integer STEPSelections_Counter::NbInstancesOfSolids() const
{
  return myNbSolids;
}

inline Standard_Integer STEPSelections_Counter::NbInstancesOfEdges() const
{
  return myNbEdges;
}

inline Standard_Integer STEPSelections_Counter::NbInstancesOfWires() const
{
  return myNbWires;
}


inline Standard_Integer STEPSelections_Counter::NbSourceFaces() const
{
  return myMapOfFaces.Extent();
}

inline Standard_Integer STEPSelections_Counter::NbSourceShells() const
{
  return myMapOfShells.Extent();
}

inline Standard_Integer STEPSelections_Counter::NbSourceSolids() const
{
  return myMapOfSolids.Extent();
}

inline Standard_Integer STEPSelections_Counter::NbSourceEdges() const
{
  return myMapOfEdges.Extent();
}

inline Standard_Integer STEPSelections_Counter::NbSourceWires() const
{
  return myMapOfWires.Extent();
}