##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QHostInfo.cpp
86 lines | 2.2 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QHostInfo.h"
#include <QVariant>
#include <qhostaddress.h>
#include <qhostinfo.h>
#include <qlist.h>
#include <qobject.h>
QHostInfo* PythonQtWrapper_QHostInfo::new_QHostInfo(const QHostInfo& d)
{
return new QHostInfo(d); }
QHostInfo* PythonQtWrapper_QHostInfo::new_QHostInfo(int lookupId)
{
return new QHostInfo(lookupId); }
void PythonQtWrapper_QHostInfo::static_QHostInfo_abortHostLookup(int lookupId)
{
QHostInfo::abortHostLookup(lookupId);
}
QList<QHostAddress > PythonQtWrapper_QHostInfo::addresses(QHostInfo* theWrappedObject) const
{
return theWrappedObject->addresses();
}
QHostInfo::HostInfoError PythonQtWrapper_QHostInfo::error(QHostInfo* theWrappedObject) const
{
return theWrappedObject->error();
}
QString PythonQtWrapper_QHostInfo::errorString(QHostInfo* theWrappedObject) const
{
return theWrappedObject->errorString();
}
QHostInfo PythonQtWrapper_QHostInfo::static_QHostInfo_fromName(const QString& name)
{
return QHostInfo::fromName(name);
}
QString PythonQtWrapper_QHostInfo::hostName(QHostInfo* theWrappedObject) const
{
return theWrappedObject->hostName();
}
QString PythonQtWrapper_QHostInfo::static_QHostInfo_localHostName()
{
return QHostInfo::localHostName();
}
int PythonQtWrapper_QHostInfo::static_QHostInfo_lookupHost(const QString& name, QObject* receiver, const char* member)
{
return QHostInfo::lookupHost(name, receiver, member);
}
int PythonQtWrapper_QHostInfo::lookupId(QHostInfo* theWrappedObject) const
{
return theWrappedObject->lookupId();
}
void PythonQtWrapper_QHostInfo::setAddresses(QHostInfo* theWrappedObject, const QList<QHostAddress >& addresses)
{
theWrappedObject->setAddresses(addresses);
}
void PythonQtWrapper_QHostInfo::setError(QHostInfo* theWrappedObject, QHostInfo::HostInfoError error)
{
theWrappedObject->setError(error);
}
void PythonQtWrapper_QHostInfo::setErrorString(QHostInfo* theWrappedObject, const QString& errorString)
{
theWrappedObject->setErrorString(errorString);
}
void PythonQtWrapper_QHostInfo::setHostName(QHostInfo* theWrappedObject, const QString& name)
{
theWrappedObject->setHostName(name);
}
void PythonQtWrapper_QHostInfo::setLookupId(QHostInfo* theWrappedObject, int id)
{
theWrappedObject->setLookupId(id);
}