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