00001 #ifndef EVF_SQUIDNET_H 00002 #define EVF_SQUIDNET_H 00003 00004 #include <string> 00005 00006 namespace evf 00007 { 00008 class SquidNet 00009 { 00010 public: 00011 SquidNet(unsigned int, std::string const &); 00012 virtual ~SquidNet(){} 00013 bool check(); 00014 private: 00015 unsigned int port_; 00016 std::string proxy_; 00017 std::string urlToGet_; 00018 }; 00019 } 00020 #endif