CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/EventFilter/Utilities/interface/RateStat.h

Go to the documentation of this file.
00001 #ifndef EVF_RATESTAT
00002 #define EVF_RATESTAT
00003 
00004 #include <string>
00005 #include <vector>
00006 
00007 namespace evf{
00008 
00009   class CurlPoster;
00010 
00011   class RateStat{
00012   public:
00013     RateStat(std::string iDieUrl);
00014     ~RateStat();
00015     void sendStat(const unsigned char *, size_t, unsigned int);
00016     void sendLegenda(const std::string &);
00017     void sendAuxLegenda(const std::string &);
00018   private:
00019     std::string iDieUrl_;
00020     CurlPoster *poster_;
00021 
00022   };
00023 }
00024 #endif