diff options
Diffstat (limited to 'src/networkaccessmanager.h')
-rw-r--r-- | src/networkaccessmanager.h | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/src/networkaccessmanager.h b/src/networkaccessmanager.h index 5c34ebd7..aefd1a25 100644 --- a/src/networkaccessmanager.h +++ b/src/networkaccessmanager.h @@ -3,16 +3,17 @@ * This file is a part of the rekonq project * * Copyright (C) 2007-2008 Trolltech ASA. All rights reserved -* Copyright (C) 2008-2009 by Andrea Diamantini <adjam7 at gmail dot com>* +* Copyright (C) 2008-2010 by Andrea Diamantini <adjam7 at gmail dot com> +* * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License or (at your option) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved -* by the membership of KDE e.V.), which shall act as a proxy +* by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of version 3 of the license. -* +* * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -28,6 +29,12 @@ #define NETWORKACCESSMANAGER_H +// Rekonq Includes +#include "rekonq_defines.h" + +// Local Includes +#include "webpage.h" + // KDE Includes #include <kio/accessmanager.h> @@ -35,15 +42,18 @@ using namespace KIO::Integration; -class NetworkAccessManager : public AccessManager +class REKONQ_TESTS_EXPORT NetworkAccessManager : public AccessManager { Q_OBJECT public: - NetworkAccessManager(QObject *parent = 0); + NetworkAccessManager(QObject *parent); protected: - virtual QNetworkReply *createRequest(Operation op, const QNetworkRequest &req, QIODevice *outgoingData = 0); + virtual QNetworkReply *createRequest(Operation op, const QNetworkRequest &request, QIODevice *outgoingData = 0); + +private: + QByteArray _acceptLanguage; }; #endif // NETWORKACCESSMANAGER_H |