All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
WindowsPacRunner.h
1 #pragma once
2 
3 #include <string.h>
4 #include "IProxyAutoConfigRunner.h"
5 
6 namespace Eegeo
7 {
8  namespace Web
9  {
11  {
12  public:
15 
16  bool AutodetectPacFile() override;
17  bool UsePacFile(const std::string& url) override;
18  const std::string GetPacSettingsForUrl(const std::string& url) override;
19  private:
20  struct Private;
21  Private* m_pd;
22  friend struct Private;
23  };
24  }
25 }
26