0024947: Redesign OCCT legacy type system -- final corrections
[occt.git] / src / PCDM / PCDM_Reader.cdl
CommitLineData
b311480e 1-- Created on: 1997-12-18
2-- Created by: Jean-Louis Frenkel
3-- Copyright (c) 1997-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--
d5f74e42 8-- This library is free software; you can redistribute it and/or modify it under
9-- the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 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
17deferred class Reader from PCDM inherits Transient from Standard
18
19
20uses
21 Document from CDM,
22 ExtendedString from TCollection,
23 Application from CDM,
24 ReaderStatus from PCDM
25
26raises DriverError from PCDM
27
28
29is
30
31 CreateDocument(me: mutable) returns Document from CDM
32 is deferred;
33 ---Purpose: this method is called by the framework before the read method.
34
35 Read(me: mutable; aFileName: ExtendedString from TCollection;
6e33d3ce 36 aNewDocument: Document from CDM;
7fd59977 37 anApplication: Application from CDM)
38 raises DriverError from PCDM
39 is deferred;
40 ---Purpose: retrieves the content of the file into a new Document.
41
42 GetStatus(me) returns ReaderStatus from PCDM;
43 ---C++: inline
44fields
45
46 myReaderStatus : ReaderStatus from PCDM is protected;
47
48end Reader from PCDM;
49