summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/include/sdl_rpc_plugin/commands/mobile/set_cloudapp_properties_response.h
blob: aae45c52ce30e5f8d157ca835838477532df7771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_MOBILE_SET_CLOUDAPP_PROPERTIES_RESPONSE_H_
#define SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_MOBILE_SET_CLOUDAPP_PROPERTIES_RESPONSE_H_

#include "application_manager/commands/command_response_impl.h"

namespace sdl_rpc_plugin {
namespace app_mngr = application_manager;

namespace commands {

class SetCloudAppPropertiesResponse : public app_mngr::commands::CommandResponseImpl{
public:
    SetCloudAppPropertiesResponse(const app_mngr::commands::MessageSharedPtr& message,
               app_mngr::ApplicationManager& application_manager,
               app_mngr::rpc_service::RPCService& rpc_service,
               app_mngr::HMICapabilities& hmi_capabilities,
               policy::PolicyHandlerInterface& policy_handler);
     virtual ~SetCloudAppPropertiesResponse();
     virtual void Run();
 private:
  DISALLOW_COPY_AND_ASSIGN(SetCloudAppPropertiesResponse);
    
}; //SetCloudAppPropertiesResponse

} // namespace commands
} // namespace sdl_rpc_plugin

#endif //SRC_COMPONENTS_APPLICATION_MANAGER_RPC_PLUGINS_SDL_RPC_PLUGIN_INCLUDE_SDL_RPC_PLUGIN_COMMANDS_MOBILE_SET_CLOUDAPP_PROPERTIES_RESPONSE_H_