kpac_impl.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _KPAC_IMPL_H_
00024 #define _KPAC_IMPL_H_
00025
00026 #include <kio/kpac.h>
00027
00028 class KURL;
00029 class KPACDownloader;
00030
00031 namespace KJS {
00032 class Interpreter;
00033 };
00034
00035 class KPACImpl : public KPAC
00036 {
00037 public:
00038 KPACImpl();
00039 virtual ~KPACImpl();
00040 virtual QString proxyForURL(const KURL &url);
00041 virtual bool init(const KURL &url);
00042 virtual bool discover();
00043 virtual void badProxy(const QString &proxy);
00044
00045 private:
00046 KJS::Interpreter *m_interpreter;
00047 bool m_configRead;
00048 bool m_inDiscovery;
00049 KPACDownloader *m_downloader;
00050 };
00051
00052 #endif
00053
This file is part of the documentation for kdelibs Version 3.1.0.