aboutsummaryrefslogtreecommitdiff
path: root/src/tests/xml.cpp
blob: 9ef6a7ec8c12a3481ef9beb21ceb7fe7c0e7f76d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "bu/xmlreader.h"
#include "bu/xmlnode.h"
#include "bu/xmldocument.h"
#include "bu/file.h"

int main()
{
	Bu::File f("test.xml", "r");
	Bu::XmlReader xr( f );

	xr.read();

	return 0;
}