// Copyright (c) 2002  David Muse
// See the file COPYING for more information

#include <rudiments/xmldom.h>
#include <stdio.h>

#ifdef RUDIMENTS_NAMESPACE
using namespace rudiments;
#endif

int main(int argc, const char **argv) {

	// display the contents of xmls.xml
	xmldom	x;
	x.parseFile("xmls.xml");

	xmldomnode	*testnode=x.getRootNode()->getFirstTagChild("test");
	testnode->deleteChild(1);

	stringbuffer	*xml=x.getRootNode()->xml();
	printf("%s\n",xml->getString());
	x.getRootNode()->cascadeOnDelete();
	delete xml;
}


syntax highlighted by Code2HTML, v. 0.9.1