KIO
sessiondata.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KIO_SESSIONDATA_H
00022 #define KIO_SESSIONDATA_H
00023
00024 #include <QtCore/QObject>
00025 #include <kio/global.h>
00026
00027
00028 namespace KIO {
00029
00030
00031
00035 class KIO_EXPORT SessionData : public QObject
00036 {
00037 Q_OBJECT
00038
00039 public:
00040 SessionData();
00041 ~SessionData();
00042
00043 virtual void configDataFor( KIO::MetaData &configData, const QString &proto,
00044 const QString &host );
00045 virtual void reset();
00046
00047 struct AuthData;
00048
00049 private:
00050 class AuthDataList;
00051 friend class AuthDataList;
00052
00053
00054 private:
00055 class SessionDataPrivate;
00056 SessionDataPrivate* const d;
00057 };
00058
00059 }
00060
00061 #endif