Returns an Iter which iterates the entire Channel.
| 267 | |
| 268 | //! Returns an Iter which iterates the entire Channel. |
| 269 | Iter getIter() { return Iter( *this, this->getBounds() ); } |
| 270 | //! Returns an Iter which iterates the Area \a area. |
| 271 | Iter getIter( const Area &area ) { return Iter( *this, area ); } |
| 272 | //! Returns a ConstIter which iterates the entire Channel. |