Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[modules/smesh.git] / src / Driver / Document_Writer.h
1 #ifndef _INCLUDE_DOCUMENT_WRITER
2 #define _INCLUDE_DOCUMENT_WRITER
3
4 #include "SMESHDS_Document.hxx"
5 #include <string>
6
7 class Document_Writer {
8
9   public :
10     virtual void Write() =0;
11     void SetFile(string);
12     void SetDocument(Handle(SMESHDS_Document)&);
13
14   protected :
15     Handle_SMESHDS_Document myDocument;
16     string myFile;
17
18 };
19 #endif