X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMDS%2FSMDS_Iterator.hxx;h=5685541b63540948e557c3b1a186bb3fa492718b;hp=371bc0e1a9c47e2f0c71ac7472ef375bb3dcc7a9;hb=79b1ac2b6df9117f16f11d444b1f165d477a1813;hpb=c63ee099ad2b149bd70136839c973e8910137bc5 diff --git a/src/SMDS/SMDS_Iterator.hxx b/src/SMDS/SMDS_Iterator.hxx index 371bc0e1a..5685541b6 100644 --- a/src/SMDS/SMDS_Iterator.hxx +++ b/src/SMDS/SMDS_Iterator.hxx @@ -22,6 +22,8 @@ #ifndef _SMDS_Iterator_HeaderFile #define _SMDS_Iterator_HeaderFile +#include "SMESH_SMDS.hxx" + /////////////////////////////////////////////////////////////////////////////// ///Abstract class for iterators ///@author Jerome Robert @@ -30,10 +32,10 @@ template 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(){}