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