summaryrefslogtreecommitdiffstats
path: root/src/network/access/qnetworkcookiejar_p.h
blob: b21a8cebbd7cb24a65d0be4d66006299b934c605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtNetwork module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** No Commercial Usage
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights.  These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

#ifndef QNETWORKCOOKIEJAR_P_H
#define QNETWORKCOOKIEJAR_P_H

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists for the convenience
// of the Network Access framework.  This header file may change from
// version to version without notice, or even be removed.
//
// We mean it.
//

#include "private/qobject_p.h"
#include "qnetworkcookie.h"

QT_BEGIN_NAMESPACE

class QNetworkCookieJarPrivate: public QObjectPrivate
{
public:
    QList<QNetworkCookie> allCookies;

    Q_DECLARE_PUBLIC(QNetworkCookieJar)
};

QT_END_NAMESPACE

#endif
>Victor Stinner2012-03-121-1/+17 * Issue #14125: Fix refleak in timemodule.c on Windows. Thanks sbt for pointingStefan Krah2012-02-271-2/+3 * Backout f8409b3d6449: the PEP 410 is not accepted yetVictor Stinner2012-02-081-167/+74 * PEP 410Victor Stinner2012-02-081-74/+167 * Issue #13846: Add time.monotonic(), monotonic clock.Victor Stinner2012-02-071-15/+67 * Issue #13847: time.clock() now raises a RuntimeError if the processor time usedVictor Stinner2012-01-261-11/+27 * Issue #13847: time.localtime() and time.gmtime() now raise an OSError insteadVictor Stinner2012-01-261-52/+62 * MergeAntoine Pitrou2012-01-181-0/+47 |\ | * Issue #10278: fix a typo in the docVictor Stinner2012-01-181-1/+1 | * Close #10278: Add time.wallclock() function, monotonic clock.Victor Stinner2012-01-181-0/+47 * | Fix error handling in timemodule.cAntoine Pitrou2012-01-181-2/+6 |/ * Issue #10951: Fix compiler warnings in timemodule.c and unicodeobject.cVictor Stinner2011-12-171-0/+4 |\ | * Issue #10951: Fix a compiler warning in timemodule.cVictor Stinner2011-12-171-0/+4 * | Issue #13560: Locale codec functions use the classic "errors" parameter,Victor Stinner2011-12-171-4/+5 * | Issue #13560: Add PyUnicode_EncodeLocale()Victor Stinner2011-12-171-1/+1 * | Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()Victor Stinner2011-12-161-3/+3 * | Issue #10350: Read and save errno before calling a function which might overw...Antoine Pitrou2011-12-161-1/+3 |\ \ | |/ | * Issue #10350: Read and save errno before calling a function which might overw...Antoine Pitrou2011-12-161-1/+3 * | (Merge 3.2) Issue #5905: time.strftime() is now using the locale encoding,Victor Stinner2011-12-091-11/+4 |\ \ | |/ | * Issue #5905: time.strftime() is now using the locale encoding, instead ofVictor Stinner2011-12-091-9/+4 | * Issue #10653: Fix time.strftime() on Windows, check for invalid format stringsVictor Stinner2011-10-161-4/+4 * | Issue #12328: Under Windows, refactor handling of Ctrl-C events andAntoine Pitrou2011-11-211-28/+2 * | Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants toVictor Stinner2011-10-251-0/+72 * | Issue #10653: Fix time.strftime() on Windows, check for invalid format stringsVictor Stinner2011-10-161-4/+4 * | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1 * | (Merge 3.2) Issue #10653: On Windows, use strftime() instead of wcsftime()Victor Stinner2011-10-141-0/+5 |\ \ | |/ | * Issue #10653: On Windows, use strftime() instead of wcsftime() becauseVictor Stinner2011-10-141-0/+5 * | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-09