Integration of OCCT 6.5.0 from SVN
[occt.git] / src / AppStdL / AppStdL_Application.cdl
CommitLineData
7fd59977 1-- File: AppStdL_Application.cdl
2-- Created: Jun 29 11:42:21 2004
3-- Author: Eugeny NAPALKOV
4-- <env@kivox>
5-- Copyright: Matra Datavision 2004
6
7
8class Application from AppStdL inherits Application from TDocStd
9
10uses MessageDriver from CDM,
11 SequenceOfExtendedString from TColStd,
12 ExtendedString from TCollection
13
14is
15
16 Create returns mutable Application from AppStdL;
17
18 MessageDriver(me: mutable)
19 returns MessageDriver from CDM
20 is redefined;
21
22 Formats(me: mutable; theFormats: out SequenceOfExtendedString from TColStd)
23 ---Purpose: returns supported format for application documents.
24 is redefined;
25
26 ResourcesName (me: mutable)
27 ---Purpose: returns the file name which contains application
28 -- resources
29 returns CString from Standard;
30
31fields
32 myMessageDriver : MessageDriver from CDM;
33
34end Application;