##// END OF EJS Templates
added new tests for new PythonQt features...
added new tests for new PythonQt features git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@73 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r37:5bd99c632a3f
Show More
PythonQtWrapper_QXmlParseException.cpp
36 lines | 1.1 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_xml / PythonQtWrapper_QXmlParseException.cpp
#include "PythonQtWrapper_QXmlParseException.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
QXmlParseException* PythonQtWrapper_QXmlParseException::new_QXmlParseException(const QString& name, int c, int l, const QString& p, const QString& s)
{
return new QXmlParseException(name, c, l, p, s); }
int PythonQtWrapper_QXmlParseException::columnNumber(QXmlParseException* theWrappedObject) const
{
return theWrappedObject->columnNumber();
}
QString PythonQtWrapper_QXmlParseException::message(QXmlParseException* theWrappedObject) const
{
return theWrappedObject->message();
}
QString PythonQtWrapper_QXmlParseException::systemId(QXmlParseException* theWrappedObject) const
{
return theWrappedObject->systemId();
}
int PythonQtWrapper_QXmlParseException::lineNumber(QXmlParseException* theWrappedObject) const
{
return theWrappedObject->lineNumber();
}
QString PythonQtWrapper_QXmlParseException::publicId(QXmlParseException* theWrappedObject) const
{
return theWrappedObject->publicId();
}