blob: 9689a28b909af8d72e782286403f3e3bb65f812f (
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");
XmlReader xr( f );
//xr.read();
return 0;
}
|