mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-15 04:33:06 +05:00
32 lines
575 B
C++
32 lines
575 B
C++
#ifndef _INCLUDE_DRIVERUNV_W_SMESHDS_MESH
|
|
#define _INCLUDE_DRIVERUNV_W_SMESHDS_MESH
|
|
|
|
#include <stdio.h>
|
|
#include <string>
|
|
|
|
#include "SMESHDS_Mesh.hxx"
|
|
#include "Mesh_Writer.h"
|
|
|
|
class DriverUNV_W_SMESHDS_Mesh : public Mesh_Writer {
|
|
|
|
public :
|
|
DriverUNV_W_SMESHDS_Mesh();
|
|
~DriverUNV_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
|