mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-30 03:20:32 +05:00
31 lines
556 B
C
31 lines
556 B
C
|
#ifndef _INCLUDE_DRIVERDAT_R_SMESHDS_MESH
|
||
|
#define _INCLUDE_DRIVERDAT_R_SMESHDS_MESH
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "SMESHDS_Mesh.hxx"
|
||
|
#include "Mesh_Reader.h"
|
||
|
|
||
|
class DriverDAT_R_SMESHDS_Mesh : public Mesh_Reader {
|
||
|
|
||
|
public :
|
||
|
DriverDAT_R_SMESHDS_Mesh();
|
||
|
~DriverDAT_R_SMESHDS_Mesh();
|
||
|
|
||
|
void Add();
|
||
|
void Read();
|
||
|
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
|