##// 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_QXmlContentHandler.cpp
65 lines | 2.3 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_xml / PythonQtWrapper_QXmlContentHandler.cpp
#include "PythonQtWrapper_QXmlContentHandler.h"
#include <QVariant>
#include <qxml.h>
bool PythonQtWrapper_QXmlContentHandler::characters(QXmlContentHandler* theWrappedObject, const QString& ch)
{
return theWrappedObject->characters(ch);
}
bool PythonQtWrapper_QXmlContentHandler::endDocument(QXmlContentHandler* theWrappedObject)
{
return theWrappedObject->endDocument();
}
bool PythonQtWrapper_QXmlContentHandler::endElement(QXmlContentHandler* theWrappedObject, const QString& namespaceURI, const QString& localName, const QString& qName)
{
return theWrappedObject->endElement(namespaceURI, localName, qName);
}
bool PythonQtWrapper_QXmlContentHandler::endPrefixMapping(QXmlContentHandler* theWrappedObject, const QString& prefix)
{
return theWrappedObject->endPrefixMapping(prefix);
}
QString PythonQtWrapper_QXmlContentHandler::errorString(QXmlContentHandler* theWrappedObject) const
{
return theWrappedObject->errorString();
}
bool PythonQtWrapper_QXmlContentHandler::ignorableWhitespace(QXmlContentHandler* theWrappedObject, const QString& ch)
{
return theWrappedObject->ignorableWhitespace(ch);
}
bool PythonQtWrapper_QXmlContentHandler::processingInstruction(QXmlContentHandler* theWrappedObject, const QString& target, const QString& data)
{
return theWrappedObject->processingInstruction(target, data);
}
void PythonQtWrapper_QXmlContentHandler::setDocumentLocator(QXmlContentHandler* theWrappedObject, QXmlLocator* locator)
{
theWrappedObject->setDocumentLocator(locator);
}
bool PythonQtWrapper_QXmlContentHandler::skippedEntity(QXmlContentHandler* theWrappedObject, const QString& name)
{
return theWrappedObject->skippedEntity(name);
}
bool PythonQtWrapper_QXmlContentHandler::startDocument(QXmlContentHandler* theWrappedObject)
{
return theWrappedObject->startDocument();
}
bool PythonQtWrapper_QXmlContentHandler::startElement(QXmlContentHandler* theWrappedObject, const QString& namespaceURI, const QString& localName, const QString& qName, const QXmlAttributes& atts)
{
return theWrappedObject->startElement(namespaceURI, localName, qName, atts);
}
bool PythonQtWrapper_QXmlContentHandler::startPrefixMapping(QXmlContentHandler* theWrappedObject, const QString& prefix, const QString& uri)
{
return theWrappedObject->startPrefixMapping(prefix, uri);
}