/* $Id: qt/structureparser.h 3.3.6 edited May 27 2003 $ */ #ifndef STRUCTUREPARSER_H #define STRUCTUREPARSER_H #include #include class QListView; class QListViewItem; class QString; class StructureParser: public QXmlDefaultHandler { public: StructureParser( QListView * ); bool startElement( const QString&, const QString&, const QString& , const QXmlAttributes& ); bool endElement( const QString&, const QString&, const QString& ); void setListView( QListView * ); private: QPtrStack stack; QListView * table; }; #endif