File: xmlhandler.h

package info (click to toggle)
mysql-navigator 1.2.4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,756 kB
  • ctags: 1,058
  • sloc: cpp: 11,213; makefile: 46; sh: 24; sql: 11
file content (16 lines) | stat: -rw-r--r-- 371 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef XMLHANDLER_H
#define XMLHANDLER_H

#include <qxml.h>
#include <qstring.h>

class XmlHandler : public QXmlDefaultHandler
{
public:
    bool startDocument();
    bool startElement( const QString&, const QString&, const QString& ,
					                       const QXmlAttributes& );
    bool endElement( const QString&, const QString&, const QString& );
};

#endif