From ec05778d5718a7912e506764d443a78d6a6179e3 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 5 Nov 2012 22:41:51 +0000 Subject: Converted tabs to spaces with tabconv. --- src/tests/taf.cpp | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) (limited to 'src/tests/taf.cpp') diff --git a/src/tests/taf.cpp b/src/tests/taf.cpp index e4354f7..0ba551f 100644 --- a/src/tests/taf.cpp +++ b/src/tests/taf.cpp @@ -10,35 +10,35 @@ int main( int argc, char *argv[] ) { - if( argc == 1 ) - { - Bu::File f("test.taf", Bu::File::Read ); - Bu::TafReader tr( f ); + 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 ); - } + 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 ); + 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 ); - } + 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; - } + delete pGroup; + } } -- cgit v1.2.3