hi i am storing my output in tiny xml in vc++..it is my code for storing output but i still dnt get headers and library files for it..
TiXmlDocument doc;
TiXmlDeclaration * decl = new TiXmlDeclaration( "1.0", "utf-8", "");
doc.LinkEndChild( decl );
TiXmlElement * root;
root = new TiXmlElement( "MyApp" );
root->SetAttribute("value",e.eventlog());
root->SetAttribute("name",e.eventlogcomp());
doc.LinkEndChild( root );
doc.SaveFile( "madeByHand.xml" );
which file should i include?
TiXmlDocument doc;
TiXmlDeclaration * decl = new TiXmlDeclaration( "1.0", "utf-8", "");
doc.LinkEndChild( decl );
TiXmlElement * root;
root = new TiXmlElement( "MyApp" );
root->SetAttribute("value",e.eventlog());
root->SetAttribute("name",e.eventlogcomp());
doc.LinkEndChild( root );
doc.SaveFile( "madeByHand.xml" );
which file should i include?