blob: 10819a4eb45981e1f430f83078fe78ffb678dd4e (
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
|
// File: STEPSelections_AssemblyExplorer.lxx
// Created: Fri Mar 26 16:03:53 1999
// Author: data exchange team
// <det@friendox.nnov.matra-dtv.fr>
//=======================================================================
//function : NbAssemblies
//purpose :
//=======================================================================
inline Standard_Integer STEPSelections_AssemblyExplorer::NbAssemblies() const
{
return myRoots.Length();
}
//=======================================================================
//function : Root
//purpose :
//=======================================================================
inline Handle(STEPSelections_AssemblyComponent) STEPSelections_AssemblyExplorer::Root(const Standard_Integer rank) const
{
return myRoots.Value(rank);
}
|