0024428: Implementation of LGPL license
[occt.git] / src / StepShape / StepShape_EdgeLoop.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
973c2be1 5// This library is free software; you can redistribute it and / or modify it
6// under the terms of the GNU Lesser General Public version 2.1 as published
7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 14#include <StepShape_EdgeLoop.ixx>
15
16
17StepShape_EdgeLoop::StepShape_EdgeLoop () {}
18
19void StepShape_EdgeLoop::Init(const Handle(TCollection_HAsciiString)& aName)
20{
21 StepRepr_RepresentationItem::Init(aName);
22}
23
24void StepShape_EdgeLoop::Init
25(const Handle(TCollection_HAsciiString)& aName,
26 const Handle(StepShape_HArray1OfOrientedEdge)& aEdgeList)
27{
28 // --- class inherited fields ---
29 StepRepr_RepresentationItem::Init(aName);
30 // --- class own fields ---
31 edgeList = aEdgeList;
32}
33
34
35void StepShape_EdgeLoop::SetEdgeList(const Handle(StepShape_HArray1OfOrientedEdge)& aEdgeList)
36{
37 edgeList = aEdgeList;
38}
39
40Handle(StepShape_HArray1OfOrientedEdge) StepShape_EdgeLoop::EdgeList() const
41{
42 return edgeList;
43}
44
45Handle(StepShape_OrientedEdge) StepShape_EdgeLoop::EdgeListValue(const Standard_Integer num) const
46{
47 return edgeList->Value(num);
48}
49
50Standard_Integer StepShape_EdgeLoop::NbEdgeList () const
51{
52 if (edgeList.IsNull()) return 0;
53 return edgeList->Length();
54}