gpt4 book ai didi

c++ - RapidXML:无法打印 - 编译时错误

转载 作者:行者123 更新时间:2023-12-01 14:43:20 28 4
gpt4 key购买 nike

我正在尝试使用 C++ 应用程序中的 RapidXML 库在控制台中打印 XML 文档数据。

我正在遵循 RapidXML 手册 link here ,但我遇到了编译时错误。

这是我的 C++ 代码:

#include <iostream>
#include "rapidxml.hpp"
#include "rapidxml_utils.hpp"
#include "rapidxml_print.hpp"

int main() {
rapidxml::file<> xmlFile("beerJournal.xml");
rapidxml::xml_document<> doc;
doc.parse<0>(xmlFile.data());

std::cout << doc;

return 0;
}

错误如下:

rapidxml_print.hpp:115: error: ‘print_children’ was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
out = print_children(out, node, flags, indent);
~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~

rapidxml_print.hpp:169: ‘template<class OutIt, class Ch> OutIt rapidxml::internal::print_children(OutIt, const rapidxml::xml_node<Ch>*, int, int)’ declared here, later in the translation unit
inline OutIt print_children(OutIt out, const xml_node<Ch> *node, int flags, int indent)
^~~~~~~~~~~~~~

观察:我已经尝试了手册中描述的其他两种 RapidXML 打印方法(上面的链接)。

我的设置:

  • Ubuntu 19 x64
  • G++ 8.3.0
  • RapidXML 1.13
  • Qt Creator IDE 4.11.0
  • Qt 5.14.0

最佳答案

我过去也遇到过同样的问题。 this SO answer 中介绍的解决方法从那时起,我的所有 GCC 构建都表现出色。

总结其他答案的信息:它归结为 GCC 4.7 中进行的名称查找更改。解决方法包括创建一个名为 rapidxml_ext.hpp 的文件,其中包含以下内容。然后将 rapidxml_ext.hpp 添加到您的客户端应用程序/库中。

rapidxml_ext.hpp

#pragma once

#include "rapidxml.hpp"

// Adding declarations to make it compatible with gcc 4.7 and greater
// See https://stackoverflow.com/a/55408678
namespace rapidxml {
namespace internal {
template <class OutIt, class Ch>
inline OutIt print_children(OutIt out, const xml_node<Ch>* node, int flags, int indent);

template <class OutIt, class Ch>
inline OutIt print_attributes(OutIt out, const xml_node<Ch>* node, int flags);

template <class OutIt, class Ch>
inline OutIt print_data_node(OutIt out, const xml_node<Ch>* node, int flags, int indent);

template <class OutIt, class Ch>
inline OutIt print_cdata_node(OutIt out, const xml_node<Ch>* node, int flags, int indent);

template <class OutIt, class Ch>
inline OutIt print_element_node(OutIt out, const xml_node<Ch>* node, int flags, int indent);

template <class OutIt, class Ch>
inline OutIt print_declaration_node(OutIt out, const xml_node<Ch>* node, int flags, int indent);

template <class OutIt, class Ch>
inline OutIt print_comment_node(OutIt out, const xml_node<Ch>* node, int flags, int indent);

template <class OutIt, class Ch>
inline OutIt print_doctype_node(OutIt out, const xml_node<Ch>* node, int flags, int indent);

template <class OutIt, class Ch>
inline OutIt print_pi_node(OutIt out, const xml_node<Ch>* node, int flags, int indent);
}
}

#include "rapidxml_print.hpp"

关于c++ - RapidXML:无法打印 - 编译时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60383777/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com