File indexing completed on 2026-05-05 08:45:17
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _PCDM_Writer_HeaderFile
0018 #define _PCDM_Writer_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022
0023 #include <Standard_Transient.hxx>
0024
0025 #include <Message_ProgressIndicator.hxx>
0026
0027 class CDM_Document;
0028 class TCollection_ExtendedString;
0029
0030 class PCDM_Writer;
0031 DEFINE_STANDARD_HANDLE(PCDM_Writer, Standard_Transient)
0032
0033 class PCDM_Writer : public Standard_Transient
0034 {
0035 public:
0036 Standard_EXPORT virtual void Write(
0037 const Handle(CDM_Document)& aDocument,
0038 const TCollection_ExtendedString& aFileName,
0039 const Message_ProgressRange& theRange = Message_ProgressRange()) = 0;
0040
0041
0042 Standard_EXPORT virtual void Write(
0043 const Handle(CDM_Document)& theDocument,
0044 Standard_OStream& theOStream,
0045 const Message_ProgressRange& theRange = Message_ProgressRange()) = 0;
0046
0047 DEFINE_STANDARD_RTTIEXT(PCDM_Writer, Standard_Transient)
0048 };
0049
0050 #endif