Salome HOME
CCAR: add Observer CORBA object to SALOMEDS module to implement a notification
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_ChildNodeIterator.cxx
index 11cffe9e1f24aa8e2140039aadba2a22474390c6..20214e33014309e9c80456643c74d915f52047a6 100644 (file)
@@ -1,4 +1,4 @@
-//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+//  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-// File:       SALOMEDSImpl_ChildNodeIterator.cxx
-// Created:    Wed Jan 26 16:43:08 2000
-// Author:     Denis PASCAL
-//             <dp@dingox.paris1.matra-dtv.fr>
+
+// File:        SALOMEDSImpl_ChildNodeIterator.cxx
+// Created:     Wed Jan 26 16:43:08 2000
+// Author:      Denis PASCAL
+//              <dp@dingox.paris1.matra-dtv.fr>
 //
 #include "SALOMEDSImpl_ChildNodeIterator.hxx"
 
 { \
     while (myNode && (myNode->Depth() > myFirstLevel) && myNode->myNext == NULL) \
       myNode = myNode->myFather; \
-       if (myNode && (myNode->Depth() > myFirstLevel) && myNode->myFather != NULL) \
-         myNode = myNode->myNext; \
-       else \
-         myNode = NULL; \
+        if (myNode && (myNode->Depth() > myFirstLevel) && myNode->myFather != NULL) \
+          myNode = myNode->myNext; \
+        else \
+          myNode = NULL; \
 }
 
 //=======================================================================
@@ -50,7 +51,7 @@ SALOMEDSImpl_ChildNodeIterator::SALOMEDSImpl_ChildNodeIterator()
 //=======================================================================
 
 SALOMEDSImpl_ChildNodeIterator::SALOMEDSImpl_ChildNodeIterator (const SALOMEDSImpl_AttributeTreeNode* aNode,
-                                                               const bool allLevels)
+                                                                const bool allLevels)
 : myNode(aNode->myFirst),
   myFirstLevel(allLevels ? aNode->Depth() : -1)
 {}
@@ -61,7 +62,7 @@ SALOMEDSImpl_ChildNodeIterator::SALOMEDSImpl_ChildNodeIterator (const SALOMEDSIm
 //=======================================================================
 
 void SALOMEDSImpl_ChildNodeIterator::Initialize(const SALOMEDSImpl_AttributeTreeNode* aNode,
-                                               const bool allLevels)
+                                                const bool allLevels)
 {
   myNode = aNode->myFirst;
   myFirstLevel = allLevels ? aNode->Depth() : -1;