smesh/src/Driver/Document_Reader.h

19 lines
344 B
C
Raw Normal View History

2003-05-19 14:07:00 +00:00
#ifndef _INCLUDE_DOCUMENT_READER
#define _INCLUDE_DOCUMENT_READER
#include "SMESHDS_Document.hxx"
#include <string>
class Document_Reader {
public :
virtual void Read() =0;
void SetFile(string);
void SetDocument(Handle(SMESHDS_Document)&);
protected :
Handle_SMESHDS_Document myDocument;
string myFile;
};
#endif