Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/smesh.git] / src / DriverDAT / DriverDAT_W_SMESHDS_Mesh.h
index 1af2b6eedb42df5225049c16c1d3b4bc4c728d98..3d18b59078d70169b02569146d5f8a12507178ea 100644 (file)
@@ -17,7 +17,7 @@
 //  License along with this library; if not, write to the Free Software 
 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
 // 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 //
 //
 #ifndef _INCLUDE_DRIVERDAT_W_SMESHDS_MESH
 #define _INCLUDE_DRIVERDAT_W_SMESHDS_MESH
 
-#include <stdio.h>
-#include <string>
+#include "SMESH_DriverDAT.hxx"
 
-#include "SMESHDS_Mesh.hxx"
-#include "Mesh_Writer.h"
+#include "Driver_SMESHDS_Mesh.h"
 
-class DriverDAT_W_SMESHDS_Mesh : public Mesh_Writer {
+class MESHDRIVERDAT_EXPORT DriverDAT_W_SMESHDS_Mesh: public Driver_SMESHDS_Mesh
+{};
 
-  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