mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-25 07:52:04 +05:00
19 lines
344 B
C
19 lines
344 B
C
![]() |
#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
|