Check if content contains information @output: - bool - True if content is empty, False otherwise
| 30 | // @output: |
| 31 | // - bool - True if content is empty, False otherwise |
| 32 | bool ContentIterator::isEmpty() const |
| 33 | { |
| 34 | return m_data.isEmpty() && m_header.isEmpty() && m_footer.isEmpty(); |
| 35 | } |
| 36 | |
| 37 | // Check if content still has chunks of information to return |
| 38 | // @output: |
no outgoing calls
no test coverage detected