Create an iterator which iterate on elements linked with the current element. More...

Public Member Functions | |
| SMDS_MeshElement_MyIterator (const SMDS_MeshElement *element) | |
| bool | more () |
| Return true if and only if there are other object in this iterator. | |
| const SMDS_MeshElement * | next () |
| Return the current object and step to the next one. | |
| virtual void | remove () |
| Delete the current element and step to the next one. | |
Private Attributes | |
| const SMDS_MeshElement * | myElement |
| bool | myMore |
Create an iterator which iterate on elements linked with the current element.
| type | The of elements on which you want to iterate |
Definition at line 144 of file SMDS_MeshElement.cxx.
| SMDS_MeshElement_MyIterator.SMDS_MeshElement_MyIterator | ( | const SMDS_MeshElement * | element | ) |
Definition at line 149 of file SMDS_MeshElement.cxx.
| bool SMDS_MeshElement_MyIterator.more | ( | ) | [virtual] |
Return true if and only if there are other object in this iterator.
Implements SMDS_Iterator< const SMDS_MeshElement * >.
Definition at line 152 of file SMDS_MeshElement.cxx.
{
return myMore;
}
| const SMDS_MeshElement* SMDS_MeshElement_MyIterator.next | ( | ) | [virtual] |
Return the current object and step to the next one.
Implements SMDS_Iterator< const SMDS_MeshElement * >.
Definition at line 157 of file SMDS_MeshElement.cxx.
| virtual void SMDS_Iterator< const SMDS_MeshElement * >.remove | ( | ) | [virtual, inherited] |
Delete the current element and step to the next one.
Definition at line 44 of file SMDS_Iterator.hxx.
{}
const SMDS_MeshElement* SMDS_MeshElement_MyIterator.myElement [private] |
Definition at line 146 of file SMDS_MeshElement.cxx.
bool SMDS_MeshElement_MyIterator.myMore [private] |
Definition at line 147 of file SMDS_MeshElement.cxx.