Salome HOME
Update to match the changes in SMDS
[modules/smesh.git] / src / DriverUNV / DriverUNV_R_SMESHDS_Mesh.h
index 0c3a7e6fae6f2f6e9e3b1f6dba46a5903c6d475a..e2ce3e2a70f4261558cd63344aaa6f494585b24c 100644 (file)
@@ -6,25 +6,24 @@
 #include "SMESHDS_Mesh.hxx"
 #include "Mesh_Reader.h"
 
-class DriverUNV_R_SMESHDS_Mesh : public Mesh_Reader {
+class DriverUNV_R_SMESHDS_Mesh:public Mesh_Reader
+{
 
-  public :
-    DriverUNV_R_SMESHDS_Mesh();
-    ~DriverUNV_R_SMESHDS_Mesh();
+  public:DriverUNV_R_SMESHDS_Mesh();
+       ~DriverUNV_R_SMESHDS_Mesh();
 
-    void Add();
-    void Read();
-    void SetMesh(Handle(SMDS_Mesh)& aMesh);
-    void SetFile(string);
+       void Add();
+       void Read();
+       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