##// END OF EJS Templates
added initial generated wrappers for Qt 4.4.3...
added initial generated wrappers for Qt 4.4.3 git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@49 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r13:d46b01f7163a
Show More
PythonQtWrapper_QXmlLexicalHandler.cpp
44 lines | 1.3 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_xml / PythonQtWrapper_QXmlLexicalHandler.cpp
#include "PythonQtWrapper_QXmlLexicalHandler.h"
#include <QVariant>
bool PythonQtWrapper_QXmlLexicalHandler::comment(QXmlLexicalHandler* theWrappedObject, const QString& ch)
{
return theWrappedObject->comment(ch);
}
bool PythonQtWrapper_QXmlLexicalHandler::endCDATA(QXmlLexicalHandler* theWrappedObject)
{
return theWrappedObject->endCDATA();
}
bool PythonQtWrapper_QXmlLexicalHandler::endDTD(QXmlLexicalHandler* theWrappedObject)
{
return theWrappedObject->endDTD();
}
bool PythonQtWrapper_QXmlLexicalHandler::endEntity(QXmlLexicalHandler* theWrappedObject, const QString& name)
{
return theWrappedObject->endEntity(name);
}
QString PythonQtWrapper_QXmlLexicalHandler::errorString(QXmlLexicalHandler* theWrappedObject) const
{
return theWrappedObject->errorString();
}
bool PythonQtWrapper_QXmlLexicalHandler::startCDATA(QXmlLexicalHandler* theWrappedObject)
{
return theWrappedObject->startCDATA();
}
bool PythonQtWrapper_QXmlLexicalHandler::startDTD(QXmlLexicalHandler* theWrappedObject, const QString& name, const QString& publicId, const QString& systemId)
{
return theWrappedObject->startDTD(name, publicId, systemId);
}
bool PythonQtWrapper_QXmlLexicalHandler::startEntity(QXmlLexicalHandler* theWrappedObject, const QString& name)
{
return theWrappedObject->startEntity(name);
}