aboutsummaryrefslogtreecommitdiff
path: root/src/tests/taf.cpp
blob: e3da1207df083cb1983c78a7a16f535fe67e0806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "bu/tafreader.h"
#include "bu/tafwriter.h"
#include "bu/file.h"

int main()
{
	Bu::File f("test.taf", "rb");
	Bu::TafReader tr( f );

	Bu::TafGroup *pGroup = tr.readGroup();

	const Bu::TafGroup *pStats = pGroup->getChild("stats");
	printf("%s\n", pStats->getName().getStr() );
	printf("  str = %s\n", pStats->getProperty("str").getStr() );

	{
		Bu::File fo("out.taf", "wb");
		Bu::TafWriter tw( fo );
		tw.writeGroup( pGroup );
	}

	delete pGroup;
}