我正在使用xbeces-c-3.1.1在Netbeans 8.0.1上使用C ++开发一个读取XML文件的应用程序。
我将变量定义为类型DOMNode *,如下所示
DOMNode* attribute=attributes->item(aIndex);
当我在调试器中展开属性时,它会显示一个函数getNodeType(),它返回一个类型的变量。但是,当我添加代码时
NodeType value=attribute->getNodeType();
我收到错误消息
error: ‘NodeType’ was not declared in this scope
答案 0 :(得分:1)
您可以尝试xercesc::DOMNode::NodeType
而不是撰写NodeType
。