本文整理汇总了C++中xml::Node::GetContent方法的典型用法代码示例。如果您正苦于以下问题:C++ Node::GetContent方法的具体用法?C++ Node::GetContent怎么用?C++ Node::GetContent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类xml::Node
的用法示例。
在下文中一共展示了Node::GetContent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: InStream
Bool BonkEnc::CDDBBatch::ReadEntries()
{
String inputFormat = String::SetInputFormat("UTF-8");
String outputFormat = String::SetOutputFormat("UTF-8");
// Read saved queries from XML
XML::Document *document = new XML::Document();
if (document->LoadFile(String(config->configDir).Append("cddb\\queries.xml")) == Success())
{
XML::Node *root = document->GetRootNode();
if (root != NIL)
{
for (Int i = 0; i < root->GetNOfNodes(); i++)
{
XML::Node *node = root->GetNthNode(i);
if (node->GetName() == "query") queries.Add(node->GetContent());
}
}
}
delete document;
// Read saved submits from XML and database cache
document = new XML::Document();
if (document->LoadFile(String(config->configDir).Append("cddb\\submits.xml")) == Success())
{
XML::Node *root = document->GetRootNode();
if (root != NIL)
{
for (Int i = 0; i < root->GetNOfNodes(); i++)
{
XML::Node *node = root->GetNthNode(i);
if (node->GetName() == "submit")
{
InStream *in = new InStream(STREAM_FILE, String(config->configDir).Append("cddb\\").Append(node->GetAttributeByName("category")->GetContent()).Append("\\").Append(node->GetContent()), IS_READONLY);
if (in->Size() > 0)
{
String result = in->InputString(in->Size());
CDDBInfo cddbInfo;
ParseCDDBRecord(result, cddbInfo);
cddbInfo.category = node->GetAttributeByName("category")->GetContent();
for (Int i = 0; i < submits.Length(); i++)
{
if (submits.GetNth(i) == cddbInfo)
{
submits.Remove(submits.GetNthIndex(i));
break;
}
}
submits.Add(cddbInfo);
}
delete in;
}
}
}
}
delete document;
String::SetInputFormat(inputFormat);
String::SetOutputFormat(outputFormat);
return True;
}