else if (name() == "EndDate") {
a.endDate = QDateTime::fromString(readElementText(), dateFormat);
}
+ else if (name() == "Eps") {
+ a.totalEpisodeCount = readElementText().toInt();
+ }
else if (name() == "Rating") {
a.rating = readElementText().toDouble();
}
| AnimeFlag::RomajiName
| AnimeFlag::Year
| AnimeFlag::Type
+ | AnimeFlag::HighestEpisodeNumber
+ | AnimeFlag::Episodes
| AnimeFlag::Rating
| AnimeFlag::VoteCount
| AnimeFlag::TempRating
// next.startDate
// next.endDate
next.type = reply->type();
+ next.totalEpisodeCount = reply->episodes();
+ next.highestEpno = reply->highestEpisodeNumber();
next.rating = reply->rating();
next.votes = reply->voteCount();
next.tempRating = reply->tempRating();