Salome HOME
Update to mach the changes in SMDS
[modules/smesh.git] / src / Driver / Document_Writer.h
index a326b92b6feeae94e131f3a8a469037a3018d391..4aea9605c07a2798dba3184307e3da0663b0cda4 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_Writer {
+class Document_Writer
+{
 
-  public :
-    virtual void Write() =0;
-    void SetFile(string);
-    void SetDocument(Handle(SMESHDS_Document)&);
+  public:virtual void Write() = 0;
+       void SetFile(string);
+       void SetDocument(SMESHDS_Document *);
 
-  protected :
-    Handle_SMESHDS_Document myDocument;
-    string myFile;
+  protected:  SMESHDS_Document * myDocument;
+       string myFile;
 
 };
 #endif