// File: SMDS_MeshElementsIterator.lxx // Created: Thu Jan 24 17:06:47 2002 // Author: Jean-Michel BOULCOURT // #include //======================================================================= //function : More //purpose : //======================================================================= inline Standard_Boolean SMDS_MeshElementsIterator::More() const { return myMapIterator.More(); } //======================================================================= //function : Value //purpose : //======================================================================= inline const Handle(SMDS_MeshElement)& SMDS_MeshElementsIterator::Value() const { Standard_NoSuchObject_Raise_if(!More(),"SMDS_MeshElementsIterator::Value"); return myCurrentMeshElement; }