Salome HOME
NPAL18076: EDF617: Regression smesh.py Only the 1st netgen parameters is added/used.
[modules/smesh.git] / src / SMDS / SMDS_IteratorOfElements.hxx
index bb4d94ebe416d48f2d0dd568caeab06e19e921f6..de64f67c31faf8c10d6c6b04707c2814ea8a9fd6 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
 
 #include "SMDS_Iterator.hxx"
 #include "SMDS_MeshElement.hxx"
 #include <set>
 
-using namespace std;
 
 class SMDS_IteratorOfElements:public SMDS_ElemIterator
 {
@@ -46,8 +45,8 @@ class SMDS_IteratorOfElements:public SMDS_ElemIterator
        const SMDS_MeshElement * myElement;             
        bool myReverseIteration;
 
-       set<const SMDS_MeshElement*> alreadyReturnedElements;
-       set<const SMDS_MeshElement*>::iterator itAlreadyReturned;       
+       std::set<const SMDS_MeshElement*> alreadyReturnedElements;
+       std::set<const SMDS_MeshElement*>::iterator itAlreadyReturned;  
        bool subMore();
        const SMDS_MeshElement * subNext();
 };