Salome HOME
untabify
authoreap <eap@opencascade.com>
Tue, 18 Jan 2011 10:49:35 +0000 (10:49 +0000)
committereap <eap@opencascade.com>
Tue, 18 Jan 2011 10:49:35 +0000 (10:49 +0000)
src/SMDS/Makefile.am
src/SMDS/SMDS_MeshEdge.cxx
src/SMDS/SMDS_MeshEdge.hxx
src/SMDS/SMDS_MeshIDFactory.cxx
src/SMDS/SMDS_UnstructuredGrid.cxx
src/SMDS/SMDS_UnstructuredGrid.hxx

index c4dd2bf11c7c77be9e3e16169f712a3c5ba065d1..8f84e1cd6f5e1de8c95cb391f4401cf3f255290a 100644 (file)
@@ -73,7 +73,8 @@ salomeinclude_HEADERS = \
        SMDS_MeshInfo.hxx \
        SMDS_UnstructuredGrid.hxx \
        SMDS_Downward.hxx \
-       SMDS_StdIterator.hxx
+       SMDS_StdIterator.hxx \
+       SMDS_IteratorOnIterators.hxx
 
 
 # Libraries targets
index fc1e3c55a1e850fbb91276791436c6c159474077..dda1199bbf03545fe6dfb93d097dc47cc259894b 100644 (file)
@@ -2,7 +2,7 @@
 
 SMDSAbs_ElementType SMDS_MeshEdge::GetType() const
 {
-       return SMDSAbs_Edge;
+        return SMDSAbs_Edge;
 }
 
 vtkIdType SMDS_MeshEdge::GetVtkType() const
index 3f5b089d6f433ff7fbbd942da2f2a4e6bc603e1c..fa266923b65e205c73efb634ca2b6fc045878697 100644 (file)
@@ -33,7 +33,7 @@
 
 class SMDS_EXPORT SMDS_MeshEdge:public SMDS_MeshCell
 {
-       
+        
   public:
         SMDSAbs_ElementType GetType() const;
         virtual vtkIdType GetVtkType() const;
index f254c700337e9261320cd0b09842c169d7be4493..a5dd391b4c90e2a5d71b252950775a42b58c4555 100644 (file)
@@ -91,24 +91,24 @@ void SMDS_MeshIDFactory::ReleaseID(int ID, int vtkId)
 
 void SMDS_MeshIDFactory::Clear()
 {
-       myMaxID = 0;
-       myPoolOfID.clear();
+        myMaxID = 0;
+        myPoolOfID.clear();
 }
 
 void SMDS_MeshIDFactory::SetMesh(SMDS_Mesh *mesh)
 {
-       myMesh = mesh;
+        myMesh = mesh;
 }
 
 SMDS_Mesh* SMDS_MeshIDFactory::GetMesh()
 {
-       return myMesh;
+        return myMesh;
 }
 
 void SMDS_MeshIDFactory::emptyPool(int maxId)
 {
-       MESSAGE("SMDS_MeshIDFactory::emptyPool " << myMaxID << " --> " << maxId);
-       myMaxID = maxId;
-       myPoolOfID.clear();
+        MESSAGE("SMDS_MeshIDFactory::emptyPool " << myMaxID << " --> " << maxId);
+        myMaxID = maxId;
+        myPoolOfID.clear();
 }
 
index ec30d5b641015af30f76375cb4815831d7c837a3..6ff8f517c16b3417a0929ce1ce1b640dc8c98334 100644 (file)
@@ -147,11 +147,11 @@ void SMDS_UnstructuredGrid::compactGrid(std::vector<int>& idNodesOldToNew, int n
   } enumState;
   enumState compactState = lookHoleStart;
 
-  //   if (this->Links)
-  //   {
-  //           this->Links->UnRegister(this);
-  //           this->Links = 0;
-  //   }
+  //    if (this->Links)
+  //    {
+  //            this->Links->UnRegister(this);
+  //            this->Links = 0;
+  //    }
 
   // --- if newNodeSize, create a new compacted vtkPoints
 
index f69012f02dcae6b7a1bb82a61197657558c92ad3..017b8eae16b202b409574bc186f3be46ffd2fe49 100644 (file)
@@ -6,7 +6,7 @@
  */
 
 #ifndef _SMDS_UNSTRUCTUREDGRID_HXX
-#define        _SMDS_UNSTRUCTUREDGRID_HXX
+#define _SMDS_UNSTRUCTUREDGRID_HXX
 
 #include <vtkUnstructuredGrid.h>
 #include <vtkCellLinks.h>
@@ -89,5 +89,5 @@ protected:
   std::vector<SMDS_Downward*> _downArray;
 };
 
-#endif /* _SMDS_UNSTRUCTUREDGRID_HXX */
+#endif  /* _SMDS_UNSTRUCTUREDGRID_HXX */