From 98e5e57a845541acddf519a81957261f58008cb9 Mon Sep 17 00:00:00 2001 From: Tannin Date: Sun, 15 Sep 2013 15:20:00 +0200 Subject: - added support for mod page plugins - re-introduced the integrated browser - added a plugin to download from the tes alliance page - the download list now contains the file description - nexus interface now stores cookies persistently to reduce number of required log-ins --- src/persistentcookiejar.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/persistentcookiejar.h (limited to 'src/persistentcookiejar.h') diff --git a/src/persistentcookiejar.h b/src/persistentcookiejar.h new file mode 100644 index 00000000..812b785c --- /dev/null +++ b/src/persistentcookiejar.h @@ -0,0 +1,24 @@ +#ifndef PERSISTENTCOOKIEJAR_H +#define PERSISTENTCOOKIEJAR_H + +#include + + +class PersistentCookieJar : public QNetworkCookieJar { +public: + PersistentCookieJar(const QString &fileName, QObject *parent = 0); + virtual ~PersistentCookieJar(); +private: + + void save(); + + void restore(); + +private: + + QString m_FileName; + +}; + + +#endif // PERSISTENTCOOKIEJAR_H -- cgit v1.3.1