KIO
sessiondata.h
Go to the documentation of this file.
00001 /* This file is part of the KDE project 00002 Copyright (C) 2000 Dawit Alemayehu <adawit@kde.org 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Lesser General Public 00006 License (LGPL) as published by the Free Software Foundation; 00007 either version 2 of the License, or (at your option) any 00008 later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Library General Public License for more details. 00014 00015 You should have received a copy of the GNU Lesser General Public 00016 License along with this library; see the file COPYING.LIB. If not, 00017 write to the Free Software Foundation, Inc., 51 Franklin Street, 00018 Fifth Floor, Boston, MA 02110-1301, USA. 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 // AuthDataList* authData; 00053 00054 private: 00055 class SessionDataPrivate; 00056 SessionDataPrivate* const d; 00057 }; 00058 00059 } // namespace 00060 00061 #endif
KDE 4.6 API Reference