All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
LightingCommand.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 "LightingCommand.h"
8 #include "ThemeStateController.h"
9 
10 namespace Eegeo
11 {
12  namespace Debug
13  {
14  namespace Commands
15  {
16  namespace Lighting
17  {
18  class LightingCommand : public Command
19  {
20  public:
22  (
23  Resources::CityThemes::ThemeStateController& themeStateController,
24  const std::string& commandName,
25  const std::string& help,
26  const std::string& usage
27  );
28 
29  protected:
30  Resources::CityThemes::CityThemeState& GetThemeState() const;
31 
32  private:
33  Resources::CityThemes::ThemeStateController& m_themeStateController;
34  };
35  }
36  }
37  }
38 }