0025076: Hidden overloaded virtual functions
[occt.git] / src / StdLDrivers / StdLDrivers_DocumentRetrievalDriver.hxx
CommitLineData
7ed7467d 1// Copyright (c) 2015 OPEN CASCADE SAS
2//
3// This file is part of Open CASCADE Technology software library.
4//
5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
10//
11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
13
14#ifndef _StdLDrivers_DocumentRetrievalDriver_HeaderFile
15#define _StdLDrivers_DocumentRetrievalDriver_HeaderFile
16
17#include <PCDM_RetrievalDriver.hxx>
18#include <Storage_Error.hxx>
19
20class StdObjMgt_MapOfInstantiators;
21
22//! retrieval driver of a Part document
23class StdLDrivers_DocumentRetrievalDriver : public PCDM_RetrievalDriver
24{
25public:
26 //! Create an empty TDocStd_Document.
8bb8064e 27 Standard_EXPORT virtual Handle(CDM_Document) CreateDocument() Standard_OVERRIDE;
7ed7467d 28
29 //! Retrieve the content of a file into a new document.
30 Standard_EXPORT virtual void Read (const TCollection_ExtendedString& theFileName,
31 const Handle(CDM_Document)& theNewDocument,
8bb8064e 32 const Handle(CDM_Application)& theApplication) Standard_OVERRIDE;
7ed7467d 33
201c2208 34 //! Override pure virtual method (raises exception Standard_NotImplemented)
35 Standard_EXPORT virtual void Read (Standard_IStream& theIStream,
36 const Handle(Storage_Data)& theStorageData,
37 const Handle(CDM_Document)& theDoc,
38 const Handle(CDM_Application)& theApplication) Standard_OVERRIDE;
39
7ed7467d 40 DEFINE_STANDARD_RTTIEXT (StdLDrivers_DocumentRetrievalDriver, PCDM_RetrievalDriver)
41
42private:
43 //! Update the reader status and raise an exception appropriate for the given storage error.
44 Standard_EXPORT Standard_Boolean RaiseOnStorageError (Storage_Error theError);
45
46 //! Register types.
47 Standard_EXPORT virtual void BindTypes (StdObjMgt_MapOfInstantiators& theMap);
48};
49
50#endif // _StdLDrivers_DocumentRetrievalDriver_HeaderFile