0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / TDocStd / TDocStd_XLinkIterator.cxx
CommitLineData
b311480e 1// Created by: DAUTRY Philippe
2// Copyright (c) 1997-1999 Matra Datavision
973c2be1 3// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// ----------------------
7fd59977 17// Version: 0.0
b311480e 18//Version Date Purpose
7fd59977 19// 0.0 Sep 15 1997 Creation
20
42cf5bc1 21#include <Standard_NoMoreObject.hxx>
7fd59977 22#include <TDF_Data.hxx>
42cf5bc1 23#include <TDocStd_Document.hxx>
7fd59977 24#include <TDocStd_XLink.hxx>
42cf5bc1 25#include <TDocStd_XLinkIterator.hxx>
7fd59977 26#include <TDocStd_XLinkRoot.hxx>
27
7fd59977 28//=======================================================================
29//function : TDocStd_XLinkIterator
30//purpose :
31//=======================================================================
7fd59977 32TDocStd_XLinkIterator::TDocStd_XLinkIterator()
33: myValue(NULL)
34{}
35
36
37//=======================================================================
38//function : TDocStd_XLinkIterator
39//purpose :
40//=======================================================================
41
42TDocStd_XLinkIterator::TDocStd_XLinkIterator
43(const Handle(TDocStd_Document)& DOC)
44: myValue(NULL)
45{ Init(DOC); }
46
47
48//=======================================================================
49//function : Initialize
50//purpose :
51//=======================================================================
52
53void TDocStd_XLinkIterator::Initialize(const Handle(TDocStd_Document)& DOC)
54{ myValue = NULL; Init(DOC); }
55
56
57//=======================================================================
58//function : Next
59//purpose :
60//=======================================================================
61
62void TDocStd_XLinkIterator::Next()
63{
2d2b3d53 64 if (myValue == NULL) throw Standard_NoMoreObject ("TDocStd_XLinkIterator::Next() - no more values available");
7fd59977 65 else myValue = myValue->Next();
66}
67
68//=======================================================================
69//function : Init
70//purpose :
71//=======================================================================
72
73void TDocStd_XLinkIterator::Init(const Handle(TDocStd_Document)& DOC)
74{
75 Handle(TDocStd_XLinkRoot) xRefRoot;
76 if (DOC->GetData()->Root().FindAttribute(TDocStd_XLinkRoot::GetID(),xRefRoot))
77 myValue = xRefRoot->First();
78}
79