Salome HOME
82b2bcd96c90ea715aa68c8431ebba5358e936a0
[modules/smesh.git] / src / DriverUNV / DriverUNV_W_SMDS_Mesh.h
1 #ifndef _INCLUDE_DRIVERUNV_W_SMDS_MESH
2 #define _INCLUDE_DRIVERUNV_W_SMDS_MESH
3
4 #include <stdio.h>
5 #include <string>
6
7 #include "SMDS_Mesh.hxx"
8 #include "Mesh_Writer.h"
9
10 class DriverUNV_W_SMDS_Mesh:public Mesh_Writer
11 {
12
13   public:DriverUNV_W_SMDS_Mesh();
14         ~DriverUNV_W_SMDS_Mesh();
15
16         void Add();
17         void Write();
18         void SetMesh(SMDS_Mesh * aMesh);
19         void SetFile(string);
20
21         void SetFileId(FILE *);
22         void SetMeshId(int);
23
24   private:  SMDS_Mesh * myMesh;
25         string myFile;
26         FILE *myFileId;
27         int myMeshId;
28
29 };
30 #endif