mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-31 19:50:33 +05:00
25 lines
491 B
C
25 lines
491 B
C
|
#ifndef _INCLUDE_DRIVERUNV_R_SMESHDS_DOCUMENT
|
||
|
#define _INCLUDE_DRIVERUNV_R_SMESHDS_DOCUMENT
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "SMESHDS_Document.hxx"
|
||
|
#include "Document_Reader.h"
|
||
|
|
||
|
class DriverUNV_R_SMESHDS_Document : public Document_Reader {
|
||
|
|
||
|
public :
|
||
|
DriverUNV_R_SMESHDS_Document();
|
||
|
~DriverUNV_R_SMESHDS_Document();
|
||
|
|
||
|
void Read();
|
||
|
//void SetFile(string);
|
||
|
//void SetDocument(Handle_SMESHDS_Document&);
|
||
|
|
||
|
private :
|
||
|
//Handle_SMESHDS_Document myDocument;
|
||
|
//string myFile;
|
||
|
|
||
|
};
|
||
|
#endif
|