summaryrefslogtreecommitdiff
path: root/src/IFSelect/IFSelect_SelectionIterator.cxx
blob: 56d3720ab9bbaa8640ce47e613c2ab07c8e95f16 (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
#include <IFSelect_SelectionIterator.ixx>


    IFSelect_SelectionIterator::IFSelect_SelectionIterator ()
{
  thecurr = 1;
  thelist = new IFSelect_HSeqOfSelection();
}

    IFSelect_SelectionIterator::IFSelect_SelectionIterator
  (const Handle(IFSelect_Selection)& sel)
{
  thecurr = 1;
  thelist = new IFSelect_HSeqOfSelection();
  sel->FillIterator(*this);
}

    void  IFSelect_SelectionIterator::AddFromIter (IFSelect_SelectionIterator& iter)
      {  for (; iter.More(); iter.Next()) AddItem(iter.Value());  }

    void  IFSelect_SelectionIterator::AddItem
  (const Handle(IFSelect_Selection)& sel)
      {  if (!sel.IsNull()) thelist->Append(sel);  }

    void  IFSelect_SelectionIterator::AddList
  (const IFSelect_TSeqOfSelection& list)
{
  Standard_Integer nb = list.Length();  // <list> Pas Handle  <thelist> Handle
  for (Standard_Integer i = 1; i <= nb; i ++) thelist->Append(list.Value(i));
}

    Standard_Boolean  IFSelect_SelectionIterator::More () const 
      {  return (thecurr <= thelist->Length());  }

    void  IFSelect_SelectionIterator::Next () 
      {  thecurr ++;  }

    const Handle(IFSelect_Selection)&  IFSelect_SelectionIterator::Value () const 
      {  return thelist->Value(thecurr);  }