blob: e3020fd115c7b07ee259de27d132ea65247a00d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
inline void SelectMgr_SelectableObject::Init()
{mycurrent=1;}
inline Standard_Boolean SelectMgr_SelectableObject::More() const
{return (mycurrent<=myselections.Length());}
inline void SelectMgr_SelectableObject::Next()
{mycurrent++;}
inline const Handle(SelectMgr_Selection)& SelectMgr_SelectableObject::
CurrentSelection() const
{return myselections(mycurrent);}
|