You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt3/examples/xml/tagreader/tagreader.cpp

31 lines
881 B

/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include "structureparser.h"
#include <ntqfile.h>
#include <ntqxml.h>
#include <ntqwindowdefs.h>
int main( int argc, char **argv )
{
if ( argc < 2 ) {
fprintf( stderr, "Usage: %s <xmlfile> [<xmlfile> ...]\n", argv[0] );
return 1;
}
StructureParser handler;
TQXmlSimpleReader reader;
reader.setContentHandler( &handler );
for ( int i=1; i < argc; i++ ) {
TQFile xmlFile( argv[i] );
TQXmlInputSource source( &xmlFile );
reader.parse( source );
}
return 0;
}