mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 08:39:16 +05:00
26 lines
511 B
C++
26 lines
511 B
C++
#ifndef _INCLUDE_DRIVERDAT_W_SMESHDS_DOCUMENT
|
|
#define _INCLUDE_DRIVERDAT_W_SMESHDS_DOCUMENT
|
|
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
#include "SMESHDS_Document.hxx"
|
|
#include "Document_Writer.h"
|
|
|
|
class DriverDAT_W_SMESHDS_Document : public Document_Writer {
|
|
|
|
public :
|
|
DriverDAT_W_SMESHDS_Document();
|
|
~DriverDAT_W_SMESHDS_Document();
|
|
|
|
void Write();
|
|
//void SetFile(string);
|
|
//void SetDocument(Handle(SMESHDS_Document)&);
|
|
|
|
private :
|
|
//Handle_SMESHDS_Document myDocument;
|
|
//string myFile;
|
|
|
|
};
|
|
#endif
|