如何使用 tinyxml2 查询字符串属性?
How To query a string attribute with tinyxml2?
嗨,有人知道如何使用 tinyxml2 将属性查询到字符串变量吗?
示例:
<pattern>
<distances numberOfDistances="1" realWorldPixelSize="0.26428571428571429">
<markerDistance linkName="AB" distance="58.624385902531891"/>
</distances>
</pattern>
为了获取距离属性,我使用
for (tinyxml2::XMLElement* child = distancesElement->FirstChildElement(); child != NULL; child = child->NextSiblingElement())
{
double distance;
child->QueryAttribute("distance", &distance);
distances.push_back(MarkerDistance(linkName, distance));
}
我想一个字符串应该是这样的:
std::string linkName;
child->QueryAttribute("linkName", &linkName);
但是对于字符串来说似乎没有过载。
好的,我找到了。
使用:
const char * name
name = child->Attribute("linkName");
嗨,有人知道如何使用 tinyxml2 将属性查询到字符串变量吗?
示例:
<pattern>
<distances numberOfDistances="1" realWorldPixelSize="0.26428571428571429">
<markerDistance linkName="AB" distance="58.624385902531891"/>
</distances>
</pattern>
为了获取距离属性,我使用
for (tinyxml2::XMLElement* child = distancesElement->FirstChildElement(); child != NULL; child = child->NextSiblingElement())
{
double distance;
child->QueryAttribute("distance", &distance);
distances.push_back(MarkerDistance(linkName, distance));
}
我想一个字符串应该是这样的:
std::string linkName;
child->QueryAttribute("linkName", &linkName);
但是对于字符串来说似乎没有过载。
好的,我找到了。
使用:
const char * name
name = child->Attribute("linkName");