##// END OF EJS Templates
started to update/improve docs...
started to update/improve docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@68 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r32:ae159b178ea0
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); }
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);
}
QString PythonQtWrapper_QXmlName::localName(QXmlName* theWrappedObject, const QXmlNamePool& query) const
{
return theWrappedObject->localName(query);
}
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::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;
}