当我尝试执行简单的 tinylibxml 程序时出现错误。
操作系统 -> Ubuntu IDE -> e 我已经通过 apt-get install 下载了 libtinyxml 并将标题包含在我的程序中但我仍然收到错误示例代码粘贴在下面
#include "tinyxml.h"
#define TIXML_USE_STL
#include <tinyxml.h>
void dump_to_stdout(const char* pFilename);
int main()
{
dump_to_stdout("example1.xml");
return 0;
}
void dump_to_stdout(const char* pFilename)
{
TiXmlDocument doc(pFilename);
bool loadOkay = doc.LoadFile();
if (loadOkay)
{
printf("\n%s:\b", pFilename);
}
else
{
printf("Failed to load file \"%s\"\n", pFilename);
}
}
因为,我做了谷歌搜索,我发现我需要包含 libtinyxml.cpp 和更多文件。各位大侠,请指导我如何做到这一点。
谢谢