CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SquidNet.h
Go to the documentation of this file.
1 #ifndef EVF_SQUIDNET_H
2 #define EVF_SQUIDNET_H
3 
4 #include <string>
5 
6 namespace evf
7 {
8  class SquidNet
9  {
10  public:
11  SquidNet(unsigned int, std::string const &);
12  virtual ~SquidNet(){}
13  bool check();
14  private:
15  unsigned int port_;
16  std::string proxy_;
17  std::string urlToGet_;
18  };
19 }
20 #endif
bool check()
Definition: SquidNet.cc:21
virtual ~SquidNet()
Definition: SquidNet.h:12
unsigned int port_
Definition: SquidNet.h:15
std::string proxy_
Definition: SquidNet.h:16
std::string urlToGet_
Definition: SquidNet.h:17
SquidNet(unsigned int, std::string const &)
Definition: SquidNet.cc:15