| 1096 | } |
| 1097 | |
| 1098 | FB_BOOLEAN findFirst(CheckStatusWrapper* status, unsigned char tag) |
| 1099 | { |
| 1100 | try |
| 1101 | { |
| 1102 | nextTag = tag; |
| 1103 | return pb->find(nextTag) ? FB_TRUE : FB_FALSE; |
| 1104 | } |
| 1105 | catch (const Exception& ex) |
| 1106 | { |
| 1107 | ex.stuffException(status); |
| 1108 | return FB_FALSE; |
| 1109 | } |
| 1110 | } |
| 1111 | |
| 1112 | FB_BOOLEAN findNext(CheckStatusWrapper* status) |
| 1113 | { |
nothing calls this directly
no test coverage detected