mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-11 10:44:53 +03:00
The copying permission statements at the beginning of source files updated to refer to LGPL. Copyright dates extended till 2014 in advance.
142 lines
3.9 KiB
Plaintext
142 lines
3.9 KiB
Plaintext
-- Created on: 2000-05-26
|
|
-- Created by: Peter KURNEV
|
|
-- Copyright (c) 2000-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 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.
|
|
|
|
---Purpose:
|
|
|
|
generic class CArray1 from IntTools (Array1Item as any)
|
|
|
|
---Purpose: The class CArray1 represents unidimensionnal arrays
|
|
-- of fixed size known at run time. Run-time boundary
|
|
-- check is performed
|
|
--
|
|
-- The range of the index is user defined from 0 to Length
|
|
|
|
raises
|
|
|
|
ConstructionError from Standard,
|
|
OutOfRange from Standard,
|
|
OutOfMemory from Standard
|
|
|
|
is
|
|
|
|
Create (Length: Integer from Standard = 0)
|
|
returns CArray1 from IntTools
|
|
---Purpose:
|
|
--- Creates an array of given Length.
|
|
---
|
|
raises
|
|
ConstructionError from Standard, -- when Length < 0
|
|
OutOfMemory from Standard; -- when not enough memory
|
|
|
|
Create (AnArray : CArray1 from IntTools)
|
|
returns CArray1 from IntTools
|
|
---Purpose:
|
|
--- Prohibits the creator by copy
|
|
---
|
|
is private;
|
|
|
|
Create(Item: Array1Item;
|
|
Length: Integer from Standard)
|
|
---Purpose:
|
|
--- Creates an array sharing datas with an other.
|
|
-- Example:
|
|
--- Item tab[100];
|
|
--- CArray1OfItem thetab (tab[0],100);
|
|
---
|
|
--- CArray1OfItem aArray1(100);
|
|
--- CArray1OfItem anSharedArray1(aArray1.ChangeValue(0),aArray1.Length());
|
|
---
|
|
-- Warning:
|
|
--- The validity of length are under the responsability
|
|
--- of the user.
|
|
--- The sahred array must have a valid address during the life of
|
|
--- the Array1.
|
|
---
|
|
returns CArray1 from IntTools
|
|
raises ConstructionError from Standard; -- when Length < 0
|
|
|
|
Init (me: in out; V: Array1Item);
|
|
---Purpose:
|
|
--- Initializes the array with a given value.
|
|
---
|
|
|
|
|
|
Resize(me: in out;
|
|
theNewLength: Integer from Standard);
|
|
---Purpose:
|
|
--- destroy current content and realloc the new size
|
|
--- does nothing if Length() == theLength
|
|
---
|
|
|
|
Destroy (me: in out);
|
|
---Purpose:
|
|
--- Frees the allocated area corresponding to the
|
|
--- array.
|
|
---
|
|
---C++: alias ~
|
|
|
|
Length (me) returns Integer from Standard;
|
|
---Purpose:
|
|
--- Returns the number of elements of <me>.
|
|
---
|
|
---C++: inline
|
|
|
|
Append (me:out; Value: Array1Item);
|
|
---Purpose:
|
|
|
|
SetValue (me : out; Index: Integer from Standard; Value: Array1Item)
|
|
raises OutOfRange from Standard;
|
|
---Purpose:
|
|
--- Sets the <Index>th element of the array to
|
|
--- <Value>.
|
|
---
|
|
|
|
|
|
Value (me; Index:Integer from Standard) returns any Array1Item
|
|
---Purpose:
|
|
--- Returns the value of the <Index>th element of the
|
|
--- array.
|
|
---
|
|
---C++: alias operator ()
|
|
---C++: return const &
|
|
raises OutOfRange from Standard;
|
|
|
|
ChangeValue (me: in out; Index:Integer from Standard) returns any Array1Item
|
|
---Purpose:
|
|
--- Returns the value of the <Index>th element of the
|
|
--- array.
|
|
---
|
|
---C++: alias operator ()
|
|
---C++: return &
|
|
raises OutOfRange from Standard;
|
|
|
|
IsEqual(me; Other: CArray1 from IntTools)
|
|
returns Boolean from Standard;
|
|
---Purpose:
|
|
--- Applys the == operator on each array item
|
|
---
|
|
---C++: alias operator ==
|
|
|
|
fields
|
|
|
|
myStart: Address;
|
|
myLength: Integer;
|
|
myIsAllocated: Boolean;
|
|
|
|
end CArray1;
|
|
|
|
|
|
|