##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QXmlAttributes.cpp
86 lines | 2.6 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QXmlAttributes.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
QXmlAttributes* PythonQtWrapper_QXmlAttributes::new_QXmlAttributes()
{
return new PythonQtShell_QXmlAttributes(); }
QString PythonQtWrapper_QXmlAttributes::localName(QXmlAttributes* theWrappedObject, int index) const
{
return ( theWrappedObject->localName(index));
}
void PythonQtWrapper_QXmlAttributes::clear(QXmlAttributes* theWrappedObject)
{
( theWrappedObject->clear());
}
int PythonQtWrapper_QXmlAttributes::count(QXmlAttributes* theWrappedObject) const
{
return ( theWrappedObject->count());
}
QString PythonQtWrapper_QXmlAttributes::qName(QXmlAttributes* theWrappedObject, int index) const
{
return ( theWrappedObject->qName(index));
}
QString PythonQtWrapper_QXmlAttributes::value(QXmlAttributes* theWrappedObject, const QString& qName) const
{
return ( theWrappedObject->value(qName));
}
int PythonQtWrapper_QXmlAttributes::length(QXmlAttributes* theWrappedObject) const
{
return ( theWrappedObject->length());
}
QString PythonQtWrapper_QXmlAttributes::value(QXmlAttributes* theWrappedObject, const QString& uri, const QString& localName) const
{
return ( theWrappedObject->value(uri, localName));
}
QString PythonQtWrapper_QXmlAttributes::type(QXmlAttributes* theWrappedObject, const QString& uri, const QString& localName) const
{
return ( theWrappedObject->type(uri, localName));
}
int PythonQtWrapper_QXmlAttributes::index(QXmlAttributes* theWrappedObject, const QString& uri, const QString& localPart) const
{
return ( theWrappedObject->index(uri, localPart));
}
QString PythonQtWrapper_QXmlAttributes::type(QXmlAttributes* theWrappedObject, const QString& qName) const
{
return ( theWrappedObject->type(qName));
}
void PythonQtWrapper_QXmlAttributes::append(QXmlAttributes* theWrappedObject, const QString& qName, const QString& uri, const QString& localPart, const QString& value)
{
( theWrappedObject->append(qName, uri, localPart, value));
}
QString PythonQtWrapper_QXmlAttributes::type(QXmlAttributes* theWrappedObject, int index) const
{
return ( theWrappedObject->type(index));
}
int PythonQtWrapper_QXmlAttributes::index(QXmlAttributes* theWrappedObject, const QString& qName) const
{
return ( theWrappedObject->index(qName));
}
QString PythonQtWrapper_QXmlAttributes::value(QXmlAttributes* theWrappedObject, int index) const
{
return ( theWrappedObject->value(index));
}
QString PythonQtWrapper_QXmlAttributes::uri(QXmlAttributes* theWrappedObject, int index) const
{
return ( theWrappedObject->uri(index));
}