##// END OF EJS Templates
fixed bad reference counting and borrowed references...
fixed bad reference counting and borrowed references git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@55 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r19:4f416979f8bf
Show More
PythonQtWrapper_QUuid.cpp
63 lines | 1.5 KiB | text/x-c | CppLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QUuid.h"
#include <QVariant>
#include <qdatastream.h>
#include <quuid.h>
QUuid* PythonQtWrapper_QUuid::new_QUuid()
{
return new QUuid(); }
QUuid* PythonQtWrapper_QUuid::new_QUuid(const QString& arg__1)
{
return new QUuid(arg__1); }
QUuid* PythonQtWrapper_QUuid::new_QUuid(uint l, ushort w1, ushort w2, uchar b1, uchar b2, uchar b3, uchar b4, uchar b5, uchar b6, uchar b7, uchar b8)
{
return new QUuid(l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8); }
QUuid PythonQtWrapper_QUuid::static_QUuid_createUuid()
{
return QUuid::createUuid();
}
bool PythonQtWrapper_QUuid::isNull(QUuid* theWrappedObject) const
{
return theWrappedObject->isNull();
}
bool PythonQtWrapper_QUuid::operator_less(QUuid* theWrappedObject, const QUuid& other) const
{
return *theWrappedObject < other;
}
void PythonQtWrapper_QUuid::writeTo(QUuid* theWrappedObject, QDataStream& arg__1)
{
arg__1 << *theWrappedObject;
}
bool PythonQtWrapper_QUuid::operator_equal(QUuid* theWrappedObject, const QUuid& orig) const
{
return *theWrappedObject == orig;
}
void PythonQtWrapper_QUuid::readFrom(QUuid* theWrappedObject, QDataStream& arg__1)
{
arg__1 >> *theWrappedObject;
}
QString PythonQtWrapper_QUuid::toString(QUuid* theWrappedObject) const
{
return theWrappedObject->toString();
}
QUuid::Variant PythonQtWrapper_QUuid::variant(QUuid* theWrappedObject) const
{
return theWrappedObject->variant();
}
QUuid::Version PythonQtWrapper_QUuid::version(QUuid* theWrappedObject) const
{
return theWrappedObject->version();
}