All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
EmptyPacRunner.h
1 #pragma once
2 
3 #include <string>
4 #include "Web.h"
5 #include "IProxyAutoConfigRunner.h"
6 
7 namespace Eegeo
8 {
9  namespace Web
10  {
12  {
13  public:
14  bool AutodetectPacFile() override;
15  bool UsePacFile(const std::string& url) override;
16  const std::string GetPacSettingsForUrl(const std::string& url) override;
17  };
18  }
19 }