fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / kio / kio / sessiondata.h
blob79b611a73c170ad678713559701603eb376f45d5
1 /* This file is part of the KDE project
2 Copyright (C) 2000 Dawit Alemayehu <adawit@kde.org
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License (LGPL) as published by the Free Software Foundation;
7 either version 2 of the License, or (at your option) any
8 later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 51 Franklin Street,
18 Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef KIO_SESSIONDATA_H
22 #define KIO_SESSIONDATA_H
24 #include <QtCore/QObject>
25 #include <kio/global.h>
28 namespace KIO {
32 /**
33 * @internal
35 class KIO_EXPORT SessionData : public QObject
37 Q_OBJECT
39 public:
40 SessionData();
41 ~SessionData();
43 virtual void configDataFor( KIO::MetaData &configData, const QString &proto,
44 const QString &host );
45 virtual void reset();
47 struct AuthData;
49 private:
50 class AuthDataList;
51 friend class AuthDataList;
52 // AuthDataList* authData;
54 private:
55 class SessionDataPrivate;
56 SessionDataPrivate* const d;
59 } // namespace
61 #endif