Salome HOME
Update to mach the changes in SMDS
[modules/smesh.git] / src / Driver / Document_Reader.h
index 5c534c9c04b9028a3d18965253d49f74c81842d8..2766466c2526017380cc15cf2860c0dcdc8fca87 100644 (file)
@@ -1,4 +1,4 @@
-//  SMESH Driver : implementaion of driver for reading and writing     
+//  SMESH Driver : implementaion of driver for reading and writing  
 //
 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
 #include "SMESHDS_Document.hxx"
 #include <string>
 
-class Document_Reader {
-  
-  public :
-    virtual void Read() =0;
-    void SetFile(string);
-    void SetDocument(Handle(SMESHDS_Document)&);
+class Document_Reader
+{
+  public:
+       virtual void Read() = 0;
+       void SetFile(string);
+       void SetDocument(SMESHDS_Document *);
 
-  protected :
-    Handle_SMESHDS_Document myDocument;
-    string myFile; 
+  protected:
+         SMESHDS_Document * myDocument;
+       string myFile;
 };
 #endif