All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PayloadStateStats.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Payload.h"
6 
7 namespace Eegeo
8 {
9  namespace Streaming
10  {
12  {
13  public:
15  void IncrementCountForState(PayloadState::PayloadStateValues state);
16  int GetCountForState(PayloadState::PayloadStateValues state) const;
17 
18  private:
19  int m_stateCounts[Eegeo::PayloadState::MAX];
20  };
21  }
22 };