#include "PythonQtWrapper_QHostAddress.h" #include #include #include #include #include #include QHostAddress* PythonQtWrapper_QHostAddress::new_QHostAddress() { return new QHostAddress(); } QHostAddress* PythonQtWrapper_QHostAddress::new_QHostAddress(QHostAddress::SpecialAddress address) { return new QHostAddress(address); } QHostAddress* PythonQtWrapper_QHostAddress::new_QHostAddress(const QHostAddress& copy) { return new QHostAddress(copy); } QHostAddress* PythonQtWrapper_QHostAddress::new_QHostAddress(const QIPv6Address& ip6Addr) { return new QHostAddress(ip6Addr); } QHostAddress* PythonQtWrapper_QHostAddress::new_QHostAddress(const QString& address) { return new QHostAddress(address); } QHostAddress* PythonQtWrapper_QHostAddress::new_QHostAddress(unsigned int ip4Addr) { return new QHostAddress(ip4Addr); } bool PythonQtWrapper_QHostAddress::isNull(QHostAddress* theWrappedObject) const { return ( theWrappedObject->isNull()); } bool PythonQtWrapper_QHostAddress::operator_equal(QHostAddress* theWrappedObject, const QHostAddress& address) const { return ( (*theWrappedObject)== address); } void PythonQtWrapper_QHostAddress::setAddress(QHostAddress* theWrappedObject, const QIPv6Address& ip6Addr) { ( theWrappedObject->setAddress(ip6Addr)); } void PythonQtWrapper_QHostAddress::setAddress(QHostAddress* theWrappedObject, unsigned int ip4Addr) { ( theWrappedObject->setAddress(ip4Addr)); } void PythonQtWrapper_QHostAddress::writeTo(QHostAddress* theWrappedObject, QDataStream& arg__1) { arg__1 << (*theWrappedObject); } void PythonQtWrapper_QHostAddress::readFrom(QHostAddress* theWrappedObject, QDataStream& arg__1) { arg__1 >> (*theWrappedObject); } unsigned int PythonQtWrapper_QHostAddress::toIPv4Address(QHostAddress* theWrappedObject) const { return ( theWrappedObject->toIPv4Address()); } bool PythonQtWrapper_QHostAddress::operator_equal(QHostAddress* theWrappedObject, QHostAddress::SpecialAddress address) const { return ( (*theWrappedObject)== address); } QString PythonQtWrapper_QHostAddress::toString(QHostAddress* theWrappedObject) const { return ( theWrappedObject->toString()); } QString PythonQtWrapper_QHostAddress::scopeId(QHostAddress* theWrappedObject) const { return ( theWrappedObject->scopeId()); } bool PythonQtWrapper_QHostAddress::setAddress(QHostAddress* theWrappedObject, const QString& address) { return ( theWrappedObject->setAddress(address)); } void PythonQtWrapper_QHostAddress::clear(QHostAddress* theWrappedObject) { ( theWrappedObject->clear()); } QAbstractSocket::NetworkLayerProtocol PythonQtWrapper_QHostAddress::protocol(QHostAddress* theWrappedObject) const { return ( theWrappedObject->protocol()); } void PythonQtWrapper_QHostAddress::setScopeId(QHostAddress* theWrappedObject, const QString& id) { ( theWrappedObject->setScopeId(id)); } QIPv6Address PythonQtWrapper_QHostAddress::toIPv6Address(QHostAddress* theWrappedObject) const { return ( theWrappedObject->toIPv6Address()); }