Sunday, February 15, 2009

TinyXML C++ Small XML Parser

Download the library from
http://www.grinninglizard.com/tinyxml/

To use it in visual studio 2005

Add tinyxml.cpp, tinyxml.h, tinyxmlerror.cpp, tinyxmlparser.cpp, tinystr.cpp, and tinystr.h to your project


project->setting->precompinled header ->select not using precompiled header (in order to not add #include "stdafx.h" to allthe files)

In the program header add

#include
#include
using namespace std;
#include "tinyxml.h"

No comments: