本文整理汇总了C++中pugi::xml_document::reset方法的典型用法代码示例。如果您正苦于以下问题:C++ xml_document::reset方法的具体用法?C++ xml_document::reset怎么用?C++ xml_document::reset使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pugi::xml_document
的用法示例。
在下文中一共展示了xml_document::reset方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: readable
virtual void readable() override {
doc.reset();
this->read(doc);
f.parse(doc);
timeout();
}
示例2: create_readings_xml
void Device::create_readings_xml(pugi::xml_document &doc, int n_readings)
{
doc.reset();
// client base node
pugi::xml_node node = doc.append_child("client");
xml_header(doc);
xml_readings(doc, false, n_readings);
}
示例3: create_confirm_xml
void Device::create_confirm_xml(pugi::xml_document &doc, int n_readings)
{
doc.reset();
// client base node
pugi::xml_node node = doc.append_child("server");
xml_header(doc);
xml_latest_readings(doc, true, n_readings);
}
示例4: idoc_select_input_file
/// @brief Select the input file from the Repository
/// @param the file name (including path) of the IDoc to use as input for any IDoc parameters
/// @return true if the file exists and was selected successfully
IDOCREPLAYDLL_API BOOL idoc_select_input_file(const LPCSTR filePath)
{
g_idocParamInputFilePath.erase();
g_idocParamInputFile.reset();
if (!ensure_valid_license())
{
return FALSE;
}
if (filePath == NULL)
{
lr_error_message("[%s] File path cannot be NULL.", __FUNCTION__);
return FALSE;
}
if (!Utils::FileExists(filePath))
{
lr_error_message("[%s] File \"%s\" is not found.", __FUNCTION__, filePath);
return FALSE;
}
using namespace pugi;
const xml_parse_result parseResult = g_idocParamInputFile.load_file(filePath);
if (!parseResult)
{
lr_error_message("[%s] Invalid input file XML (%s).", __FUNCTION__, parseResult.description());
return FALSE;
}
g_idocParamInputFilePath = filePath;
if (is_trace_log_enabled())
{
lr_output_message("Selected IDoc input file: %s", filePath);
}
return TRUE;
}