当前位置: 首页>>代码示例>>C++>>正文


C++ XmlElement::end方法代码示例

本文整理汇总了C++中XmlElement::end方法的典型用法代码示例。如果您正苦于以下问题:C++ XmlElement::end方法的具体用法?C++ XmlElement::end怎么用?C++ XmlElement::end使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在XmlElement的用法示例。


在下文中一共展示了XmlElement::end方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: process_messages

//-----------------------------------------------------------------------------------------
void process_messages(const XmlElement& xf, const Components& components, const string& tag, const int depth, ostream& outf)
{
	outf << string((depth + 1) * 2, ' ') << '<' << tag;
	output_attributes(xf, outf);
	outf << '>' << endl;

	for(XmlElement::XmlSet::const_iterator mitr(xf.begin()); mitr != xf.end(); ++mitr)
		process_elements(mitr, components, depth + 2, outf);
	outf << string((depth + 1) * 2, ' ') << "</" << tag << '>' << endl;
}
开发者ID:mattyv,项目名称:fix8,代码行数:11,代码来源:f8precomp.cpp

示例2: process_group

//-----------------------------------------------------------------------------------------
void process_group(const XmlElement& xf, const Components& components, const int depth,
	ostream& outf, const string& compon, bool required)
{
	outf << string(depth * 2, ' ') << "<group";
	output_attributes(xf, outf, required);
	if (!compon.empty())
		outf << " component=\'" << compon << '\'';
	outf << '>' << endl;

	for(XmlElement::XmlSet::const_iterator itr(xf.begin()); itr != xf.end(); ++itr)
		process_elements(itr, components, depth + 1, outf, string(), required);
	outf << string(depth * 2, ' ') << "</group>" << endl;
}
开发者ID:Fantasticer,项目名称:fix8,代码行数:14,代码来源:f8precomp.cpp


注:本文中的XmlElement::end方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。