mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-12 09:59:03 +08:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
114
src/TFunction/TFunction_Function.cdl
Executable file
114
src/TFunction/TFunction_Function.cdl
Executable file
@@ -0,0 +1,114 @@
|
||||
-- File: TFunction_Function.cdl
|
||||
-- Created: Thu Jun 10 19:25:22 1999
|
||||
-- Author: Vladislav ROMASHKO
|
||||
-- <vro@flox.nnov.matra-dtv.fr>
|
||||
---Copyright: Matra Datavision 1999
|
||||
|
||||
class Function from TFunction inherits Attribute from TDF
|
||||
---Purpose: Provides the following two services
|
||||
-- - a link to an evaluation driver
|
||||
-- - the means of providing a link between a
|
||||
-- function and an evaluation driver.
|
||||
uses
|
||||
|
||||
GUID from Standard,
|
||||
OStream from Standard,
|
||||
Attribute from TDF,
|
||||
RelocationTable from TDF,
|
||||
DataSet from TDF,
|
||||
Label from TDF
|
||||
|
||||
|
||||
is
|
||||
|
||||
---Purpose: Static methods:
|
||||
-- ==============
|
||||
|
||||
Set (myclass; L : Label from TDF)
|
||||
---Purpose: Finds or Creates a function attribute on the label <L>.
|
||||
-- Returns the function attribute.
|
||||
returns Function from TFunction;
|
||||
|
||||
Set(myclass; L : Label from TDF;
|
||||
DriverID : GUID from Standard)
|
||||
---Purpose: Finds or Creates a function attribute on the label <L>.
|
||||
-- Sets a driver ID to the function.
|
||||
-- Returns the function attribute.
|
||||
returns Function from TFunction;
|
||||
|
||||
GetID(myclass)
|
||||
---Purpose: Returns the GUID for functions.
|
||||
---C++: return const &
|
||||
returns GUID from Standard;
|
||||
|
||||
--Find(myclass; L : Label from TDF;
|
||||
-- F : out Function from TFunction)
|
||||
---Purpose: Returns a function found on the label.
|
||||
--returns Boolean from Standard;
|
||||
|
||||
|
||||
---Purpose: Instance methods:
|
||||
-- ================
|
||||
|
||||
Create returns mutable Function from TFunction;
|
||||
|
||||
GetDriverGUID (me)
|
||||
---Purpose: Returns the GUID for this function's driver.
|
||||
---C++: inline
|
||||
---C++: return const &
|
||||
returns GUID from Standard;
|
||||
|
||||
SetDriverGUID(me : mutable; guid : GUID from Standard);
|
||||
---Purpose: Sets the driver for this function as that
|
||||
-- indentified by the GUID guid.
|
||||
|
||||
|
||||
Failed (me)
|
||||
---Purpose: Returns true if the execution failed
|
||||
---C++: inline
|
||||
returns Boolean from Standard;
|
||||
|
||||
SetFailure (me : mutable; mode : Integer from Standard = 0);
|
||||
---Purpose: Sets the failed index.
|
||||
|
||||
GetFailure (me)
|
||||
---Purpose:
|
||||
-- Returns an index of failure if the execution of this function failed.
|
||||
-- If this integer value is 0, no failure has occurred.
|
||||
---C++: inline
|
||||
returns Integer from Standard;
|
||||
|
||||
|
||||
---Purpose: Implementation of Attribute methods:
|
||||
-- ===================================
|
||||
|
||||
ID (me)
|
||||
---C++: return const &
|
||||
returns GUID from Standard;
|
||||
|
||||
Restore (me: mutable; with : Attribute from TDF)
|
||||
is virtual;
|
||||
|
||||
Paste (me; into : mutable Attribute from TDF;
|
||||
RT : mutable RelocationTable from TDF)
|
||||
is virtual;
|
||||
|
||||
NewEmpty(me)
|
||||
returns mutable Attribute from TDF
|
||||
is redefined;
|
||||
|
||||
References(me;
|
||||
aDataSet : DataSet from TDF)
|
||||
is redefined;
|
||||
|
||||
Dump(me; anOS : in out OStream from Standard)
|
||||
returns OStream from Standard
|
||||
is redefined;
|
||||
---C++: return &
|
||||
|
||||
fields
|
||||
|
||||
myDriverGUID : GUID from Standard;
|
||||
myFailure : Integer from Standard;
|
||||
|
||||
end Function;
|
||||
Reference in New Issue
Block a user