##// 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_QNetworkCookieJar.h
25 lines | 796 B | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QNETWORKCOOKIEJAR_H
#define PYTHONQTWRAPPER_QNETWORKCOOKIEJAR_H
#include <qnetworkcookie.h>
#include <QObject>
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qnetworkcookie.h>
#include <qobject.h>
#include <qurl.h>
class PythonQtWrapper_QNetworkCookieJar : public QObject
{ Q_OBJECT
public:
public slots:
QNetworkCookieJar* new_QNetworkCookieJar(QObject* parent = 0);
void delete_QNetworkCookieJar(QNetworkCookieJar* obj) { delete obj; }
QList<QNetworkCookie > cookiesForUrl(QNetworkCookieJar* theWrappedObject, const QUrl& url) const;
bool setCookiesFromUrl(QNetworkCookieJar* theWrappedObject, const QList<QNetworkCookie >& cookieList, const QUrl& url);
};
#endif // PYTHONQTWRAPPER_QNETWORKCOOKIEJAR_H