aboutsummaryrefslogtreecommitdiff
path: root/src/tests/taf.cpp
blob: cb9b75faddfea86dde9bf0217934316d3257af8d (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;
}