aboutsummaryrefslogtreecommitdiff
path: root/src/tests/taf.cpp
blob: d832c9b73a91dc3dfc24578e70481a56bef452e0 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "bu/tafreader.h"
#include "bu/tafwriter.h"
#include "bu/file.h"

int main( int argc, char *argv[] )
{
	if( argc == 1 )
	{
		Bu::File f("test.taf", "rb");
		Bu::TafReader tr( f );

		Bu::TafGroup *pGroup = tr.readGroup();
		
		{
			Bu::File fo("out.taf", "wb");
			Bu::TafWriter tw( fo );
			tw.writeGroup( pGroup );
		}

		delete pGroup;
	}
	else if( argc == 3 )
	{
		Bu::File f( argv[1], "rb");
		Bu::TafReader tr( f );

		Bu::TafGroup *pGroup = tr.readGroup();
		
		{
			Bu::File fo( argv[2], "wb");
			Bu::TafWriter tw( fo );
			tw.writeGroup( pGroup );
		}

		delete pGroup;
	}
}