Salome HOME
This commit was generated by cvs2git to create branch 'IMPORT'.
[modules/smesh.git] / src / SMDS / SMDS_MeshElementsIterator.cxx
1 using namespace std;
2 // File:        SMDS_MeshElementsIterator.cxx
3 // Created:     Thu Jan 24 12:09:12 2002
4 // Author:      Jean-Michel BOULCOURT
5 //              <jmb@coulox.paris1.matra-dtv.fr>
6
7
8 #include "SMDS_MeshElementsIterator.ixx"
9
10 void SMDS_MeshElementsIterator::Delete()
11 {}
12
13 //=======================================================================
14 //function : Next
15 //purpose  : 
16 //=======================================================================
17
18 void SMDS_MeshElementsIterator::Next()
19 {
20   myMapIterator.Next();
21   if (More()) {
22     myCurrentMeshElement = myMapIterator.Key();
23   }
24 }