进入可视化界面搜库,并安装
不用加lib 也不用dll。
也可以用手工加lib类似于下面,这样dll也要加到运行目录。或者加到属性里。
- #include "tinyxml.h" //#include 是以当前文件所在路径为当前目录
- #pragma comment(lib,"Mes/tinyxml.lib") //#pragma comment 是以当前工程所在路径为当前目录
需要加头文件
#include "tinyxml.h"
使用 OK
- string path = "Mes//XMT_MES//写号参数配置.xml";
- TiXmlDocument* doc = new TiXmlDocument();
- if (!doc->LoadFile(path))
- {
- MessageBox(0, R"(InValid Path)", R"(BiMass)", 0);
- }
- TiXmlElement* root = doc->RootElement();
- TiXmlElement* next = root->FirstChildElement();
- string parentNode = root->Value();
- string childNode = next->Value();
包存在这里: