Check if content still has chunks of information to return @output: - bool - True if class can return next chunk of information, False otherwise
| 38 | // @output: |
| 39 | // - bool - True if class can return next chunk of information, False otherwise |
| 40 | bool ContentIterator::hasNext() const |
| 41 | { |
| 42 | return !atEnd; |
| 43 | } |
| 44 | |
| 45 | // Get next chunk of information |
| 46 | // @output: |