| 34 | |
| 35 | |
| 36 | void ParserBase::parse(const QUrl &url, bool download) |
| 37 | { |
| 38 | m_url = url; |
| 39 | m_download = download; |
| 40 | result.title.clear(); |
| 41 | result.stream_types.clear(); |
| 42 | result.streams.clear(); |
| 43 | result.danmaku_url.clear(); |
| 44 | runParser(url); |
| 45 | } |
| 46 | |
| 47 | |
| 48 | void ParserBase::finishParsing() |