本文整理汇总了C++中Book::getChapter方法的典型用法代码示例。如果您正苦于以下问题:C++ Book::getChapter方法的具体用法?C++ Book::getChapter怎么用?C++ Book::getChapter使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Book
的用法示例。
在下文中一共展示了Book::getChapter方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: addBookToXML
//------------------------------------------------------------------------------
bool addBookToXML(QString fileName, QString namebook, Book mbook)
{
bool ret = false;
// myDebug() << getTextFromHtmlFile(fileName);
// myDebug() << "\n\n\n\n";
QFile file(fileName);
if (file.exists())
{
//create file if it's not exist
if (file.open(QIODevice::Append))
{
//try to open or create file
QString tab = " ";
QTextStream ts(&file);
ts.setCodec(getCodecOfEncoding(getEncodingFromFile(fileName)));
ts << tab << "<book name=\"" << namebook << "\">" << endl;
for (int i = 0; i < mbook.size(); i++)
{
ts << tab << tab << "<chapter number=\"" << i + 1
<< "\">" << endl;
for (int j = 0; j < mbook.getChapter(i).verseCount(); j++)
{
QString text = mbook.getChapter(i).data().value(j).data();
QString str = getClearText(&text);
ts << tab << tab << tab << str;
}
ts << tab << tab << "</chapter>" << endl;
}
ts << tab << "</book>" << endl;
file.close();
ret = true;
}
else
{
ret = false;
}
}
return ret;
}