##// 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_QXmlName.cpp
49 lines | 1.4 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QXmlName.h"
#include <QVariant>
#include <qxmlname.h>
#include <qxmlnamepool.h>
QXmlName* PythonQtWrapper_QXmlName::new_QXmlName()
{
return new QXmlName(); }
QXmlName* PythonQtWrapper_QXmlName::new_QXmlName(QXmlNamePool& namePool, const QString& localName, const QString& namespaceURI, const QString& prefix)
{
return new QXmlName(namePool, localName, namespaceURI, prefix); }
bool PythonQtWrapper_QXmlName::static_QXmlName_isNCName(const QString& candidate)
{
return QXmlName::isNCName(candidate);
}
bool PythonQtWrapper_QXmlName::isNull(QXmlName* theWrappedObject) const
{
return theWrappedObject->isNull();
}
QString PythonQtWrapper_QXmlName::localName(QXmlName* theWrappedObject, const QXmlNamePool& query) const
{
return theWrappedObject->localName(query);
}
QString PythonQtWrapper_QXmlName::namespaceUri(QXmlName* theWrappedObject, const QXmlNamePool& query) const
{
return theWrappedObject->namespaceUri(query);
}
bool PythonQtWrapper_QXmlName::operator_equal(QXmlName* theWrappedObject, const QXmlName& other) const
{
return *theWrappedObject == other;
}
QString PythonQtWrapper_QXmlName::prefix(QXmlName* theWrappedObject, const QXmlNamePool& query) const
{
return theWrappedObject->prefix(query);
}
QString PythonQtWrapper_QXmlName::toClarkName(QXmlName* theWrappedObject, const QXmlNamePool& query) const
{
return theWrappedObject->toClarkName(query);
}