| 52 | |
| 53 | protected: |
| 54 | UcdParserBase(QIODevice *source, UcdEntry *entry) |
| 55 | : _source(source) |
| 56 | , _nextFetched(false) |
| 57 | , _hasNext(true) |
| 58 | , _lineNo(0) |
| 59 | , _entry(entry) |
| 60 | { |
| 61 | Q_ASSERT(_source); |
| 62 | Q_ASSERT(_entry); |
| 63 | } |
| 64 | |
| 65 | bool fetchNext() |
| 66 | { |
nothing calls this directly
no outgoing calls
no test coverage detected