Salome HOME
Integration of PAL/SALOME V2.1.0c from OCC
[modules/smesh.git] / src / DriverDAT / DriverDAT_W_SMESHDS_Mesh.h
index af13808fb75c37734f7d60e9fb64edcd35c88bfa..b9b9130c2bc71266522090b47df4d7e4536b9280 100644 (file)
 #ifndef _INCLUDE_DRIVERDAT_W_SMESHDS_MESH
 #define _INCLUDE_DRIVERDAT_W_SMESHDS_MESH
 
-#include <stdio.h>
-#include <string>
+#include "Driver_SMESHDS_Mesh.h"
 
-#include "SMESHDS_Mesh.hxx"
-#include "Mesh_Writer.h"
+class DriverDAT_W_SMESHDS_Mesh: public Driver_SMESHDS_Mesh
+{};
 
-class DriverDAT_W_SMESHDS_Mesh:public Mesh_Writer
-{
-
-  public:DriverDAT_W_SMESHDS_Mesh();
-       ~DriverDAT_W_SMESHDS_Mesh();
-
-       void Add();
-       void Write();
-       void SetMesh(SMDS_Mesh * aMesh);
-       void SetFile(string);
-
-       void SetFileId(FILE *);
-       void SetMeshId(int);
-
-  private:  SMDS_Mesh * myMesh;
-       string myFile;
-       FILE *myFileId;
-       int myMeshId;
-
-};
 #endif