##// END OF EJS Templates
added builtin support for variants etc., this will replace the direct includes in PythonQt...
added builtin support for variants etc., this will replace the direct includes in PythonQt git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@129 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r93:7b53f64eae84
Show More
PythonQtWrapper_QXmlName.cpp
52 lines | 1.5 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QXmlName.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.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::operator_equal(QXmlName* theWrappedObject, const QXmlName& other) const
{
return ( (*theWrappedObject)== other);
}
QString PythonQtWrapper_QXmlName::toClarkName(QXmlName* theWrappedObject, const QXmlNamePool& query) const
{
return ( theWrappedObject->toClarkName(query));
}
QString PythonQtWrapper_QXmlName::prefix(QXmlName* theWrappedObject, const QXmlNamePool& query) const
{
return ( theWrappedObject->prefix(query));
}
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::static_QXmlName_isNCName(const QString& candidate)
{
return (QXmlName::isNCName(candidate));
}