| 742 | } |
| 743 | |
| 744 | bool ClumpletReader::find(UCHAR tag) |
| 745 | { |
| 746 | const FB_SIZE_T co = getCurOffset(); |
| 747 | for (rewind(); !isEof(); moveNext()) |
| 748 | { |
| 749 | if (tag == getClumpTag()) |
| 750 | { |
| 751 | return true; |
| 752 | } |
| 753 | } |
| 754 | setCurOffset(co); |
| 755 | return false; |
| 756 | } |
| 757 | |
| 758 | bool ClumpletReader::next(UCHAR tag) |
| 759 | { |
no test coverage detected