// // This file is part of the Marble Desktop Globe. // // This program is free software licensed under the GNU LGPL. You can // find a copy of this license in LICENSE.txt in the top directory of // the source code. // // Copyright 2007 Andrew Manson // #ifndef GMLSAX_H #define GMLSAX_H #include #include class QXmlAttributes; class QXmlParseException; namespace Marble { /** A very simple Xml Parser that will be based on the Gml Scema ( Geographic Markup Language ) @author Andrew Manson */ class GmlSax : public QXmlDefaultHandler { public: GmlSax( qreal *lon, qreal *lat ); ~GmlSax(); bool startElement( const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &attributes); bool endElement( const QString &namespaceURI, const QString &localName, const QString &qName ); bool fatalError(const QXmlParseException &exception); bool characters( const QString &str ); private: qreal *m_lat; qreal *m_lon; QString currentText; }; } #endif