mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-18 21:12:36 +08:00
The copying permission statements at the beginning of source files updated to refer to LGPL. Copyright dates extended till 2014 in advance.
72 lines
2.7 KiB
Plaintext
72 lines
2.7 KiB
Plaintext
-- Created on: 1993-06-10
|
|
-- Created by: Christian CAILLET
|
|
-- Copyright (c) 1993-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 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.
|
|
|
|
class SimpleBinderOfTransient from Transfer inherits Binder
|
|
|
|
---Purpose : An adapted instantiation of SimpleBinder for Transient Result,
|
|
-- i.e. ResultType can be computed from the Result itself,
|
|
-- instead of being static
|
|
|
|
uses CString, Type, Transient
|
|
|
|
raises TransferFailure
|
|
|
|
is
|
|
|
|
Create returns mutable SimpleBinderOfTransient;
|
|
---Purpose : Creates an empty SimpleBinderOfTransient
|
|
|
|
-- IsMultiple (me) returns Boolean;
|
|
---Purpose : Returns True if a starting object is bound with SEVERAL
|
|
-- results : Here, returns allways False
|
|
-- See Binder itself
|
|
|
|
ResultType (me) returns Type;
|
|
---Purpose : Returns the Effective (Dynamic) Type of the Result
|
|
-- (Standard_Transient if no Result is defined)
|
|
|
|
ResultTypeName (me) returns CString;
|
|
---Purpose : Returns the Effective Name of (Dynamic) Type of the Result
|
|
-- (void) if no result is defined
|
|
|
|
SetResult (me : mutable; res : any Transient)
|
|
---Purpose : Defines the Result
|
|
raises TransferFailure;
|
|
-- Error if the Result is already used (see class Binder)
|
|
|
|
Result (me) returns any Transient
|
|
---Purpose : Returns the defined Result, if there is one
|
|
raises TransferFailure;
|
|
-- Error if the Result is not defined (see class Binder)
|
|
---C++ : return const &
|
|
|
|
GetTypedResult (myclass; bnd : Binder; atype : Type;
|
|
res : out Transient) returns Boolean;
|
|
---Purpose : Returns a transient result according to its type (IsKind)
|
|
-- i.e. the result itself if IsKind(atype), else searches in
|
|
-- NextResult, until first found, then returns True
|
|
-- If not found, returns False (res is NOT touched)
|
|
--
|
|
-- This syntactic form avoids to do DownCast : if a result is
|
|
-- found with the good type, it is loaded in <res> and can be
|
|
-- immediately used, well initialised
|
|
|
|
fields
|
|
|
|
theres : Transient;
|
|
|
|
end SimpleBinderOfTransient;
|