| 88 | } |
| 89 | |
| 90 | std::string Xtc::getAuthor() const { |
| 91 | if (!loaded || !parser) { |
| 92 | return ""; |
| 93 | } |
| 94 | |
| 95 | // Try to get author from XTC metadata |
| 96 | return parser->getAuthor(); |
| 97 | } |
| 98 | |
| 99 | bool Xtc::hasChapters() const { |
| 100 | if (!loaded || !parser) { |
no outgoing calls
no test coverage detected