CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/EventFilter/Utilities/interface/SquidNet.h

Go to the documentation of this file.
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