All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PerformanceTestBeginCommand.h
1 // Copyright (c) 2014 eeGeo. All rights reserved.
2 
3 #pragma once
4 
5 #include "Command.h"
6 #include "Commands.h"
7 #include "DebugDecl.h"
8 #include <vector>
9 
10 namespace Eegeo
11 {
12  namespace Debug
13  {
14  namespace Commands
15  {
16  namespace Profile
17  {
19  {
20  public:
22 
23  bool TryExecute(
24  const std::vector<std::string>& arguments,
25  const ICommandTerminalOutput& commandTerminal) const;
26  private:
27  Eegeo::Debug::Profile::PerformanceTestRunner& m_performanceTestRunner;
28  };
29  }
30  }
31  }
32 }