#include "PythonQtWrapper_QNetworkCookie.h" #include #include #include #include #include #include #include #include #include QNetworkCookie* PythonQtWrapper_QNetworkCookie::new_QNetworkCookie(const QByteArray& name, const QByteArray& value) { return new QNetworkCookie(name, value); } QNetworkCookie* PythonQtWrapper_QNetworkCookie::new_QNetworkCookie(const QNetworkCookie& other) { return new QNetworkCookie(other); } QString PythonQtWrapper_QNetworkCookie::domain(QNetworkCookie* theWrappedObject) const { return theWrappedObject->domain(); } bool PythonQtWrapper_QNetworkCookie::operator_equal(QNetworkCookie* theWrappedObject, const QNetworkCookie& other) const { return (*theWrappedObject)== other; } QString PythonQtWrapper_QNetworkCookie::path(QNetworkCookie* theWrappedObject) const { return theWrappedObject->path(); } QByteArray PythonQtWrapper_QNetworkCookie::name(QNetworkCookie* theWrappedObject) const { return theWrappedObject->name(); } QList PythonQtWrapper_QNetworkCookie::static_QNetworkCookie_parseCookies(const QByteArray& cookieString) { return QNetworkCookie::parseCookies(cookieString); } void PythonQtWrapper_QNetworkCookie::setSecure(QNetworkCookie* theWrappedObject, bool enable) { theWrappedObject->setSecure(enable); } void PythonQtWrapper_QNetworkCookie::setValue(QNetworkCookie* theWrappedObject, const QByteArray& value) { theWrappedObject->setValue(value); } void PythonQtWrapper_QNetworkCookie::setName(QNetworkCookie* theWrappedObject, const QByteArray& cookieName) { theWrappedObject->setName(cookieName); } void PythonQtWrapper_QNetworkCookie::setExpirationDate(QNetworkCookie* theWrappedObject, const QDateTime& date) { theWrappedObject->setExpirationDate(date); } QDateTime PythonQtWrapper_QNetworkCookie::expirationDate(QNetworkCookie* theWrappedObject) const { return theWrappedObject->expirationDate(); } QByteArray PythonQtWrapper_QNetworkCookie::toRawForm(QNetworkCookie* theWrappedObject, QNetworkCookie::RawForm form) const { return theWrappedObject->toRawForm(form); } bool PythonQtWrapper_QNetworkCookie::isSecure(QNetworkCookie* theWrappedObject) const { return theWrappedObject->isSecure(); } bool PythonQtWrapper_QNetworkCookie::isSessionCookie(QNetworkCookie* theWrappedObject) const { return theWrappedObject->isSessionCookie(); } QByteArray PythonQtWrapper_QNetworkCookie::value(QNetworkCookie* theWrappedObject) const { return theWrappedObject->value(); } void PythonQtWrapper_QNetworkCookie::setDomain(QNetworkCookie* theWrappedObject, const QString& domain) { theWrappedObject->setDomain(domain); } void PythonQtWrapper_QNetworkCookie::setPath(QNetworkCookie* theWrappedObject, const QString& path) { theWrappedObject->setPath(path); }