blob: 45a6430587bb8f49333ccd7760124ea7bf38a1b7 (
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
39
40
41
42
43
44
45
|
/*
* Copyright (C) 2007-2008 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#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", Bu::File::Read );
Bu::TafReader tr( f );
Bu::TafGroup *pGroup = tr.readGroup();
{
Bu::File fo("out.taf", Bu::File::Write|Bu::File::Create );
Bu::TafWriter tw( fo );
tw.writeGroup( pGroup );
}
delete pGroup;
}
else if( argc == 3 )
{
Bu::File f( argv[1], Bu::File::Read );
Bu::TafReader tr( f );
Bu::TafGroup *pGroup = tr.readGroup();
{
Bu::File fo( argv[2], Bu::File::Write|Bu::File::Create );
Bu::TafWriter tw( fo );
tw.writeGroup( pGroup );
}
delete pGroup;
}
}
|