CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RateStat.h
Go to the documentation of this file.
1 #ifndef EVF_RATESTAT
2 #define EVF_RATESTAT
3 
4 #include <string>
5 #include <vector>
6 
7 namespace evf{
8 
9  class CurlPoster;
10 
11  class RateStat{
12  public:
13  RateStat(std::string iDieUrl);
14  ~RateStat();
15  void sendStat(const unsigned char *, size_t, unsigned int);
16  void sendLegenda(const std::string &);
17  void sendAuxLegenda(const std::string &);
18  private:
19  std::string iDieUrl_;
21 
22  };
23 }
24 #endif
void sendAuxLegenda(const std::string &)
Definition: RateStat.cc:29
CurlPoster * poster_
Definition: RateStat.h:20
std::string iDieUrl_
Definition: RateStat.h:19
void sendLegenda(const std::string &)
Definition: RateStat.cc:24
RateStat(std::string iDieUrl)
Definition: RateStat.cc:9
void sendStat(const unsigned char *, size_t, unsigned int)
Definition: RateStat.cc:19