0024428: Implementation of LGPL license
[occt.git] / src / TFunction / TFunction.cdl
CommitLineData
b311480e 1-- Created on: 1999-06-10
2-- Created by: Vladislav ROMASHKO
3-- Copyright (c) 1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
b311480e 7--
973c2be1 8-- This library is free software; you can redistribute it and / or modify it
9-- under the terms of the GNU Lesser General Public version 2.1 as published
10-- by the Free Software Foundation, with special exception defined in the file
11-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12-- distribution for complete text of the license and disclaimer of any warranty.
b311480e 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
7fd59977 16
17package TFunction
18 --- Purpose: Function attributes separate data from
19 -- algorithms. Each function contains the ID of a function driver.
20uses
21
22 Standard,
23 TCollection,
24 TColStd,
25 TDF,
26 TDataStd
27
28is
29
30 enumeration ExecutionStatus is
31 ES_WrongDefinition,
32 ES_NotExecuted,
33 ES_Executing,
34 ES_Succeeded,
35 ES_Failed;
36
37 deferred class Driver;
38
39 class DriverTable;
40
41 class Logbook;
42
43 class DataMapOfGUIDDriver
44 instantiates DataMap from TCollection(GUID from Standard,
45 Driver from TFunction,
46 GUID from Standard);
47 class Array1OfDataMapOfGUIDDriver
48 instantiates Array1 from TCollection(DataMapOfGUIDDriver from TFunction);
49 class HArray1OfDataMapOfGUIDDriver
50 instantiates HArray1 from TCollection(DataMapOfGUIDDriver from TFunction,
51 Array1OfDataMapOfGUIDDriver from TFunction);
52
53 class Function;
54 class GraphNode;
55 class Scope;
56
57 class IFunction;
58 class Iterator;
59
60 class DataMapOfLabelListOfLabel
61 instantiates DataMap from TCollection(Label from TDF,
62 LabelList from TDF,
63 LabelMapHasher from TDF);
64 class DoubleMapOfIntegerLabel
65 instantiates DoubleMap from TCollection(Integer from Standard,
66 Label from TDF,
67 MapIntegerHasher from TColStd,
68 LabelMapHasher from TDF);
69
70end TFunction;