Salome HOME
untabify
[modules/smesh.git] / src / SMDS / SMDS_Iterator.hxx
index e4e900b5bc722e7fcc96986c0515fc79c5400969..abbe9e3f4f657e8f1a4d0e827d0482dc78f20376 100644 (file)
 template<typename VALUE> class SMDS_Iterator
 {
   public:
-       /// Return true if and only if there are other object in this iterator
-         virtual bool more()=0;
-       
-       /// Return the current object and step to the next one
-         virtual VALUE next()=0;
-       
-       /// Delete the current element and step to the next one
-       virtual void remove(){}
-       
-       /// Provide virtual destructor just for case if some derived iterator
+        /// Return true if and only if there are other object in this iterator
+          virtual bool more()=0;
+        
+        /// Return the current object and step to the next one
+          virtual VALUE next()=0;
+        
+        /// Delete the current element and step to the next one
+        virtual void remove(){}
+        
+        /// Provide virtual destructor just for case if some derived iterator
         /// must have a destructor
-       virtual ~SMDS_Iterator(){}
+        virtual ~SMDS_Iterator(){}
 };
 
 #endif