1 // Created on: 1993-03-11
2 // Created by: Remi LEQUETTE
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2012 OPEN CASCADE SAS
6 // The content of this file is subject to the Open CASCADE Technology Public
7 // License Version 6.5 (the "License"). You may not use the content of this file
8 // except in compliance with the License. Please obtain a copy of the License
9 // at http://www.opencascade.org and read it completely before using this file.
11 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
14 // The Original Code and all software distributed under the License is
15 // distributed on an "AS IS" basis, without warranty of any kind, and the
16 // Initial Developer hereby disclaims all such warranties, including without
17 // limitation, any warranties of merchantability, fitness for a particular
18 // purpose or non-infringement. Please see the License for the specific terms
19 // and conditions governing the rights and limitations under the License.
22 //=======================================================================
23 //function : TCollection_HArray1
25 //=======================================================================
27 inline TCollection_HArray1::TCollection_HArray1(const Standard_Integer First,
28 const Standard_Integer Last) :
33 //=======================================================================
36 //=======================================================================
38 inline Standard_Integer TCollection_HArray1::Length () const
40 return myArray.Length();
43 //=======================================================================
44 //function : TCollection_HArray1
46 //=======================================================================
47 inline TCollection_HArray1::TCollection_HArray1(const Standard_Integer First,
48 const Standard_Integer Last,
49 const ItemHArray1& V) :
56 //=======================================================================
59 //=======================================================================
61 inline void TCollection_HArray1::Init(const ItemHArray1& V)
66 //=======================================================================
69 //=======================================================================
71 inline Standard_Integer TCollection_HArray1::Lower () const
73 return myArray.Lower();
76 //=======================================================================
79 //=======================================================================
81 inline Standard_Integer TCollection_HArray1::Upper () const
83 return myArray.Upper();
86 //=======================================================================
89 //=======================================================================
91 inline void TCollection_HArray1::SetValue (const Standard_Integer Index,
92 const ItemHArray1& Value)
94 myArray.SetValue(Index,Value);
97 //=======================================================================
100 //=======================================================================
102 inline const TheArray1& TCollection_HArray1::Array1() const
108 //=======================================================================
109 //function : ChangeArray1
111 //=======================================================================
113 inline TheArray1& TCollection_HArray1::ChangeArray1()
118 //=======================================================================
121 //=======================================================================
123 inline const ItemHArray1& TCollection_HArray1::Value(const Standard_Integer Index) const
125 return myArray(Index);
128 //=======================================================================
129 //function : ChangeValue
131 //=======================================================================
133 inline ItemHArray1& TCollection_HArray1::ChangeValue(const Standard_Integer Index)
135 return myArray(Index);