All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CommandParser.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include <string>
7 #include <vector>
8 
9 namespace Eegeo
10 {
11  namespace Debug
12  {
13  namespace Commands
14  {
16  {
17  std::string commandName;
18  std::vector<std::string> args;
19  std::string originalText;
20  };
21 
23  {
24  public:
25  bool TryParse(const std::string& text, ParsedCommand& outCommand) const;
26  };
27  }
28  }
29 }