##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r24:f543ed746063
r96:3170eb771a99
Show More
PythonQtWrapper_QXmlDeclHandler.h
32 lines | 973 B | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QXMLDECLHANDLER_H
#define PYTHONQTWRAPPER_QXMLDECLHANDLER_H
#include <qxml.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
class PythonQtShell_QXmlDeclHandler : public QXmlDeclHandler
{
public:
PythonQtShell_QXmlDeclHandler():QXmlDeclHandler(),_wrapper(NULL) {};
virtual bool attributeDecl(const QString& eName, const QString& aName, const QString& type, const QString& valueDefault, const QString& value);
virtual QString errorString() const;
virtual bool externalEntityDecl(const QString& name, const QString& publicId, const QString& systemId);
virtual bool internalEntityDecl(const QString& name, const QString& value);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QXmlDeclHandler : public QObject
{ Q_OBJECT
public:
public slots:
QXmlDeclHandler* new_QXmlDeclHandler();
void delete_QXmlDeclHandler(QXmlDeclHandler* obj) { delete obj; }
};
#endif // PYTHONQTWRAPPER_QXMLDECLHANDLER_H