mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-16 10:54:53 +03:00
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
137 lines
4.5 KiB
Plaintext
137 lines
4.5 KiB
Plaintext
-- Copyright (c) 1998-1999 Matra Datavision
|
|
-- Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
--
|
|
-- This file is part of Open CASCADE Technology software library.
|
|
--
|
|
-- This library is free software; you can redistribute it and/or modify it under
|
|
-- the terms of the GNU Lesser General Public License version 2.1 as published
|
|
-- by the Free Software Foundation, with special exception defined in the file
|
|
-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
-- distribution for complete text of the license and disclaimer of any warranty.
|
|
--
|
|
-- Alternatively, this file may be used under the terms of Open CASCADE
|
|
-- commercial license or contractual agreement.
|
|
|
|
generic class HArray1 from TCollection
|
|
(ItemHArray1 as any;
|
|
TheArray1 as Array1 from TCollection(ItemHArray1))
|
|
|
|
inherits TShared
|
|
|
|
raises RangeError from Standard,
|
|
DimensionMismatch from Standard,
|
|
OutOfRange from Standard,
|
|
OutOfMemory from Standard
|
|
|
|
---Purpose: The class HArray1 represents unidimensionnal arrays
|
|
-- of fixed size dynamically dimensioned at construction time.
|
|
-- As with a C array, the access time to an HArray1 indexed
|
|
-- item is constant and is independent of the array size.
|
|
-- Arrays are commonly used as elementary data structures
|
|
-- for more complex objects.
|
|
-- HArray1 objects are handles to arrays.
|
|
-- - HArray1 arrays may be shared by several objects.
|
|
-- - You may use a TCollection_Array1 structure to have the actual array.
|
|
-- HArray1 is a generic class which depends on two parameters:
|
|
-- - Item, the type of element in the array,
|
|
-- - Array, the actual type of array handled by HArray1.
|
|
-- This is an instantiation with Item of the
|
|
-- TCollection_Array1 generic class.
|
|
-- Warning
|
|
-- HArray1 indexes start and end at a user-defined position.
|
|
-- Thus, when accessing an item, you must base the index on
|
|
-- the lower and upper bounds of the array.
|
|
|
|
|
|
|
|
is
|
|
|
|
Create (Low, Up: Integer from Standard)
|
|
returns HArray1 from TCollection
|
|
---Purpose: Creates an array of lower bound <Low> and upper
|
|
-- bound <Up>. Range error is raised when <Up> is less than <Low>.
|
|
raises
|
|
RangeError from Standard,
|
|
OutOfMemory from Standard;
|
|
---C++: inline
|
|
|
|
Create (Low, Up: Integer from Standard; V : ItemHArray1)
|
|
returns HArray1 from TCollection
|
|
---Purpose: Creates an array of lower bound <Low> and upper
|
|
-- bound <Up>. Range error is raised when <Up> is less than <Low>.
|
|
raises
|
|
RangeError from Standard,
|
|
OutOfMemory from Standard;
|
|
---C++: inline
|
|
|
|
Init(me : mutable; V : ItemHArray1);
|
|
---Purpose: Initialize the array with the value <V>
|
|
---C++: inline
|
|
|
|
Length (me) returns Integer from Standard
|
|
---Level: Public
|
|
---Purpose: Returns the number of elements of <me>.
|
|
---C++: inline
|
|
is static ;
|
|
|
|
Lower (me) returns Integer from Standard
|
|
---Level: Public
|
|
---Purpose: Returns the lower bound.
|
|
---C++: inline
|
|
is static ;
|
|
|
|
Upper (me) returns Integer from Standard
|
|
---Level: Public
|
|
---Purpose: Returns the upper bound.
|
|
---C++: inline
|
|
is static ;
|
|
|
|
|
|
SetValue (me : mutable; Index: Integer from Standard; Value: ItemHArray1)
|
|
---Level: Public
|
|
---Purpose: Assigns the value <Value> to the <Index>th item of this array.
|
|
raises
|
|
OutOfRange from Standard
|
|
---C++: inline
|
|
is static ;
|
|
|
|
|
|
Value (me; Index:Integer from Standard) returns any ItemHArray1
|
|
---Level: Public
|
|
---Purpose: Returns the value of the <Index>th element of the array.
|
|
---C++: inline
|
|
---C++: return const &
|
|
raises
|
|
OutOfRange from Standard
|
|
is static ;
|
|
|
|
ChangeValue (me : mutable; Index:Integer from Standard) returns any
|
|
ItemHArray1
|
|
---Level: Public
|
|
---Purpose: Returns the value of the <Index>th element of the array.
|
|
---C++: inline
|
|
---C++: return &
|
|
raises
|
|
OutOfRange from Standard
|
|
is static ;
|
|
|
|
Array1(me) returns TheArray1
|
|
---Purpose: Returns the Array array used as a field by this array;
|
|
-- the returned array is not modifiable;
|
|
---C++: return const &
|
|
---C++: inline
|
|
is static;
|
|
|
|
ChangeArray1(me : mutable) returns TheArray1
|
|
---Purpose: Returns a modifiable reference on the Array array
|
|
-- used as a field by this array, in order to modify it.
|
|
---C++: return &
|
|
---C++: inline
|
|
is static;
|
|
|
|
fields
|
|
myArray : TheArray1;
|
|
|
|
end HArray1 ;
|
|
|