smesh/src/DriverUNV/DriverUNV_R_SMDS_Mesh.h

30 lines
486 B
C
Raw Normal View History

2003-05-19 19:18:36 +06:00
#ifndef _INCLUDE_DRIVERUNV_R_SMDS_MESH
#define _INCLUDE_DRIVERUNV_R_SMDS_MESH
#include <stdio.h>
#include "SMDS_Mesh.hxx"
#include "Mesh_Reader.h"
2003-09-04 18:03:27 +06:00
class DriverUNV_R_SMDS_Mesh:public Mesh_Reader
{
2003-05-19 19:18:36 +06:00
2003-09-04 18:03:27 +06:00
public:DriverUNV_R_SMDS_Mesh();
~DriverUNV_R_SMDS_Mesh();
2003-05-19 19:18:36 +06:00
2003-09-04 18:03:27 +06:00
void Add();
void Read();
void SetMesh(SMDS_Mesh * aMesh);
void SetFile(string);
2003-05-19 19:18:36 +06:00
2003-09-04 18:03:27 +06:00
void SetFileId(FILE *);
void SetMeshId(int);
2003-05-19 19:18:36 +06:00
2003-09-04 18:03:27 +06:00
private: SMDS_Mesh * myMesh;
string myFile;
FILE *myFileId;
int myMeshId;
2003-05-19 19:18:36 +06:00
};
#endif