Salome HOME
new script for testing hypothesis "NbSegments" (PAL8238)
[modules/smesh.git] / src / DriverDAT / DriverDAT_W_SMESHDS_Mesh.h
index 1af2b6eedb42df5225049c16c1d3b4bc4c728d98..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(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