| 97 | } |
| 98 | |
| 99 | bool hasMore(FB_SIZE_T value) const |
| 100 | { |
| 101 | for (const Entry* stk = this; stk; stk = stk->next) |
| 102 | { |
| 103 | FB_SIZE_T c = static_cast<const inherited*>(stk)->getCount(); |
| 104 | if (value < c) |
| 105 | { |
| 106 | return true; |
| 107 | } |
| 108 | value -= c; |
| 109 | } |
| 110 | |
| 111 | return false; |
| 112 | } |
| 113 | |
| 114 | }; // class Entry |
| 115 |