mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-23 05:49:13 +08:00
34 lines
932 B
Plaintext
Executable File
34 lines
932 B
Plaintext
Executable File
-- File: AppStd_Application.cdl
|
|
-- Created: Sep 7 14:59:06 2000
|
|
-- Author: TURIN Anatoliy <ati@nnov.matra-dtv.fr>
|
|
-- Copyright: Matra Datavision 2000
|
|
|
|
|
|
class Application from AppStd inherits Application from TDocStd
|
|
|
|
uses MessageDriver from CDM,
|
|
SequenceOfExtendedString from TColStd,
|
|
ExtendedString from TCollection
|
|
|
|
is
|
|
|
|
Create returns mutable Application from AppStd;
|
|
|
|
MessageDriver(me: mutable)
|
|
returns MessageDriver from CDM
|
|
is redefined;
|
|
|
|
Formats(me: mutable; theFormats: out SequenceOfExtendedString from TColStd)
|
|
---Purpose: returns supported format for application documents.
|
|
is redefined;
|
|
|
|
ResourcesName (me: mutable)
|
|
---Purpose: returns the file name which contains application
|
|
-- resources
|
|
returns CString from Standard;
|
|
|
|
fields
|
|
myMessageDriver : MessageDriver from CDM;
|
|
|
|
end Application;
|