0026377: Passing Handle objects as arguments to functions as non-const reference...
[occt.git] / src / DDF / DDF_BasicCommands.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 55517b0..f1c9084
@@ -1,10 +1,22 @@
-// File:       DDF_BasicCommands.cxx
+// Created by: DAUTRY Philippe & VAUTHIER Jean-Claude
+// Copyright (c) 1997-1999 Matra Datavision
+// Copyright (c) 1999-2014 OPEN CASCADE SAS
+//
+// This file is part of Open CASCADE Technology software library.
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License version 2.1 as published
+// by the Free Software Foundation, with special exception defined in the file
+// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
+// distribution for complete text of the license and disclaimer of any warranty.
+//
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
+
 //             ---------------------
-// Author:     DAUTRY Philippe & VAUTHIER Jean-Claude
-// Copyright:  Matra Datavision 1997
 
 // Version:    0.0
-// History:    Version Date            Purpose
+//Version      Date            Purpose
 //             0.0     Feb 10 1997     Creation
 
 
@@ -208,7 +220,7 @@ static Standard_Integer DDF_SetTagger (Draw_Interpretor& di,
     TDF_TagSource::Set(L); 
     return 0;
   }
-  di << "DDF_SetTagger : Error" << "\n";
+  di << "DDF_SetTagger : Error\n";
   return 1;
 }
 
@@ -231,7 +243,7 @@ static Standard_Integer DDF_NewTag (Draw_Interpretor& di,
     di << A->NewTag ();
     return 0;
   }
-  di << "DDF_NewTag : Error" << "\n";
+  di << "DDF_NewTag : Error\n";
   return 1;
 }
 
@@ -261,7 +273,7 @@ static Standard_Integer DDF_NewChild (Draw_Interpretor& di,
       return 0;
     }
   }
-  di << "DDF_NewChild : Error" << "\n";
+  di << "DDF_NewChild : Error\n";
   return 1;
 }
 
@@ -278,13 +290,13 @@ static Standard_Integer DDF_Label (Draw_Interpretor& di,Standard_Integer n, cons
     TDF_Label L;
     if (!DDF::FindLabel(DF,a[2],L,Standard_False)) { 
       DDF::AddLabel(DF,a[2],L);  
-      //di << "Label : " << a[2] << " created" << "\n";
+      //di << "Label : " << a[2] << " created\n";
     }
-    //else di << "Label : " << a[2] << " retrieved" << "\n";
+    //else di << "Label : " << a[2] << " retrieved\n";
     DDF::ReturnLabel(di,L);
     return 0;
   }
-  di << "DDF_Label : Error" << "\n";
+  di << "DDF_Label : Error\n";
   return 1; 
 }