Salome HOME
Fix of IPAL19621 (Qt4 porting: regress of automatic assign a set of hypotheses).
[modules/smesh.git] / src / SMDS / SMDS_Iterator.hxx
index 264438c7dd42fe8793bf424a5d35df14a2a6a25c..5685541b63540948e557c3b1a186bb3fa492718b 100644 (file)
 //  License along with this library; if not, write to the Free Software 
 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
 // 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 
 #ifndef _SMDS_Iterator_HeaderFile
 #define _SMDS_Iterator_HeaderFile
 
+#include "SMESH_SMDS.hxx"
+
 ///////////////////////////////////////////////////////////////////////////////
 ///Abstract class for iterators
 ///@author Jerome Robert
@@ -30,10 +32,10 @@ template<typename VALUE> class SMDS_Iterator
 {
   public:
        /// Return true if and only if there are other object in this iterator
-       virtual bool more()=0;
+         virtual bool more()=0;
        
        /// Return the current object and step to the next one
-       virtual VALUE next()=0;
+         virtual VALUE next()=0;
        
        /// Delete the current element and step to the next one
        virtual void remove(){}