All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
EchoCommand.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Command.h"
6 #include "Commands.h"
7 
8 namespace Eegeo
9 {
10  namespace Debug
11  {
12  namespace Commands
13  {
14  class EchoCommand : public Command
15  {
16  public:
17  EchoCommand();
18  virtual ~EchoCommand();
19 
20  bool TryExecute(
21  const std::vector<std::string>& arguments,
22  const ICommandTerminalOutput& commandTerminal) const;
23  };
24  }
25  }
26 }