Abstract class for iterators. More...
#include <SMDS_Iterator.hxx>

Public Member Functions | |
| virtual bool | more ()=0 |
| Return true if and only if there are other object in this iterator. | |
| virtual VALUE | next ()=0 |
| Return the current object and step to the next one. | |
| virtual void | remove () |
| Delete the current element and step to the next one. | |
| virtual | ~SMDS_Iterator () |
| Provide virtual destructor just for case if some derived iterator must have a destructor. | |
Abstract class for iterators.
Definition at line 34 of file SMDS_Iterator.hxx.
| virtual SMDS_Iterator< VALUE >.~SMDS_Iterator | ( | ) | [virtual] |
Provide virtual destructor just for case if some derived iterator must have a destructor.
Definition at line 48 of file SMDS_Iterator.hxx.
{}
| virtual bool SMDS_Iterator< VALUE >.more | ( | ) | [pure virtual] |
Return true if and only if there are other object in this iterator.
Implemented in SMDS_FaceOfEdges_MyIterator, _MyEdgeIterator, SMDS_IteratorOfElements, SMDS_IteratorOnIterators< VALUE, CONTAINER_OF_ITERATORS >, SMDS_LinearEdge_MyNodeIterator, SMDS_Mesh0DElement_MyNodeIterator, SMDS_MeshElement_MyIterator, SMDS_MeshNode_MyInvIterator, SMDS_MeshNode_MyIterator, _MyEdgeIterator, _MySubIterator, _MyEdgeIterator, _MySubIterator, SMDS_SetIterator< VALUE, VALUE_SET_ITERATOR, ACCESOR >, SMDS_VolumeOfFaces_MyIterator, _MySubIterator, SMDS_VtkCellIterator, SMDS_VtkCellIteratorPolyH, MyGroupIterator, MyIterator< VALUE >, MySetIterator< ELEM, TSET >, MyIterator< VALUE >, SMDS_SetIterator< M.mapped_type, M.const_reverse_iterator, SMDS.ValueAccessor< M.mapped_type, M.const_reverse_iterator > >, SMDS_SetIterator< M.key_type, M.const_iterator, SMDS.KeyAccessor< M.key_type, M.const_iterator > >, SMDS_SetIterator< M.mapped_type, M.const_iterator, SMDS.ValueAccessor< M.mapped_type, M.const_iterator > >, MyIterator< const SMDS_MeshElement * >, MyIterator< const SMDS_MeshElement * >, MyIterator< const SMDS_MeshNode * >, and MyIterator< const SMDS_MeshNode * >.
| virtual VALUE SMDS_Iterator< VALUE >.next | ( | ) | [pure virtual] |
Return the current object and step to the next one.
Implemented in SMDS_FaceOfEdges_MyIterator, _MyEdgeIterator, SMDS_IteratorOfElements, SMDS_IteratorOnIterators< VALUE, CONTAINER_OF_ITERATORS >, SMDS_LinearEdge_MyNodeIterator, SMDS_Mesh0DElement_MyNodeIterator, SMDS_MeshElement_MyIterator, SMDS_MeshNode_MyInvIterator, SMDS_MeshNode_MyIterator, _MyEdgeIterator, _MySubIterator, _MyEdgeIterator, _MySubIterator, SMDS_SetIterator< VALUE, VALUE_SET_ITERATOR, ACCESOR >, SMDS_VolumeOfFaces_MyIterator, _MySubIterator, SMDS_VtkCellIterator, MyGroupIterator, MyIterator< VALUE >, MySetIterator< ELEM, TSET >, MyIterator< VALUE >, SMDS_SetIterator< M.mapped_type, M.const_reverse_iterator, SMDS.ValueAccessor< M.mapped_type, M.const_reverse_iterator > >, SMDS_SetIterator< M.key_type, M.const_iterator, SMDS.KeyAccessor< M.key_type, M.const_iterator > >, SMDS_SetIterator< M.mapped_type, M.const_iterator, SMDS.ValueAccessor< M.mapped_type, M.const_iterator > >, MyIterator< const SMDS_MeshElement * >, MyIterator< const SMDS_MeshElement * >, MyIterator< const SMDS_MeshNode * >, and MyIterator< const SMDS_MeshNode * >.
| virtual void SMDS_Iterator< VALUE >.remove | ( | ) | [virtual] |
Delete the current element and step to the next one.
Definition at line 44 of file SMDS_Iterator.hxx.
{}