All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
StreamStatsCommand.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Command.h"
6 #include "Commands.h"
7 #include "IDebugStats.h"
8 #include "PayloadPool.h"
9 
10 namespace Eegeo
11 {
12  namespace Debug
13  {
14  namespace Commands
15  {
16  namespace Stream
17  {
18  class StreamStatsCommand : public Command
19  {
20  public:
21  StreamStatsCommand(const IDebugStats& debugStats,
22  const Streaming::PayloadPool& payloadPool);
23 
24  bool TryExecute(
25  const std::vector<std::string>& arguments,
26  const ICommandTerminalOutput& commandTerminal) const;
27  private:
28  const IDebugStats& m_debugStats;
29  const Streaming::PayloadPool& m_payloadPool;
30  };
31  }
32  }
33  }
34 }