| 361 | return termiter != subBlocks.end(); //return true if not the end yet |
| 362 | } |
| 363 | ODBlock * ODBlock::nextSubBlock() //returns a pointer to the next sub block. |
| 364 | { |
| 365 | ODBlock * b = (*termiter); |
| 366 | ++termiter; |
| 367 | return b; |
| 368 | } |
| 369 | |
| 370 | |
| 371 | ODBlock * ODBlock::getBlock(const char * ident,bool bRecursiveSearch) //returns block with given identifier, or NULL. |