mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-14 17:48:34 +05:00
32 lines
575 B
C
32 lines
575 B
C
|
#ifndef _INCLUDE_DRIVERDAT_W_SMESHDS_MESH
|
||
|
#define _INCLUDE_DRIVERDAT_W_SMESHDS_MESH
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string>
|
||
|
|
||
|
#include "SMESHDS_Mesh.hxx"
|
||
|
#include "Mesh_Writer.h"
|
||
|
|
||
|
class DriverDAT_W_SMESHDS_Mesh : public Mesh_Writer {
|
||
|
|
||
|
public :
|
||
|
DriverDAT_W_SMESHDS_Mesh();
|
||
|
~DriverDAT_W_SMESHDS_Mesh();
|
||
|
|
||
|
void Add();
|
||
|
void Write();
|
||
|
void SetMesh(Handle(SMDS_Mesh)& aMesh);
|
||
|
void SetFile(string);
|
||
|
|
||
|
void SetFileId(FILE*);
|
||
|
void SetMeshId(int);
|
||
|
|
||
|
private :
|
||
|
Handle_SMDS_Mesh myMesh;
|
||
|
string myFile;
|
||
|
FILE* myFileId;
|
||
|
int myMeshId;
|
||
|
|
||
|
};
|
||
|
#endif
|