| 97 | } |
| 98 | |
| 99 | bool Xtc::hasChapters() const { |
| 100 | if (!loaded || !parser) { |
| 101 | return false; |
| 102 | } |
| 103 | return parser->hasChapters(); |
| 104 | } |
| 105 | |
| 106 | const std::vector<xtc::ChapterInfo>& Xtc::getChapters() { |
| 107 | static const std::vector<xtc::ChapterInfo> kEmpty; |
no outgoing calls
no test coverage detected