// // 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 2006-2007 Torsten Rahn // Copyright 2007 Inge Wallin // #ifndef SVGXMLHANDLER_H #define SVGXMLHHANDLER_H #include class SVGXmlHandler : public QXmlDefaultHandler { public: SVGXmlHandler(const QString&); // virtual bool startDocument(); // virtual bool endDocument(); virtual bool startElement(const QString&, const QString&, const QString&, const QXmlAttributes&); // virtual bool endElement(); private: int m_header; int m_pointnum; bool m_initialized; QString m_targetfile; }; #endif // SEARCHCOMBOBOX_H