Salome HOME
Update to match the changes in SMDS
[modules/smesh.git] / src / DriverDAT / DriverDAT_W_SMESHDS_Mesh.h
index 1af2b6eedb42df5225049c16c1d3b4bc4c728d98..af13808fb75c37734f7d60e9fb64edcd35c88bfa 100644 (file)
 #include "SMESHDS_Mesh.hxx"
 #include "Mesh_Writer.h"
 
 #include "SMESHDS_Mesh.hxx"
 #include "Mesh_Writer.h"
 
-class DriverDAT_W_SMESHDS_Mesh : public Mesh_Writer {
+class DriverDAT_W_SMESHDS_Mesh:public Mesh_Writer
+{
 
 
-  public :
-    DriverDAT_W_SMESHDS_Mesh();
-    ~DriverDAT_W_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 Add();
+       void Write();
+       void SetMesh(SMDS_Mesh * aMesh);
+       void SetFile(string);
 
 
-    void SetFileId(FILE*);
-    void SetMeshId(int);
+       void SetFileId(FILE *);
+       void SetMeshId(int);
 
 
-private :
-    Handle_SMDS_Mesh myMesh;
-    string myFile; 
-    FILE* myFileId;
-    int myMeshId;
+  private:  SMDS_Mesh * myMesh;
+       string myFile;
+       FILE *myFileId;
+       int myMeshId;
 
 };
 #endif
 
 };
 #endif