summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/get_way_points_response.cc
blob: 84761838de1ab342c0206ce3579ace996414491d (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
#include "application_manager/application_manager.h"
#include "sdl_rpc_plugin/commands/mobile/get_way_points_response.h"
#include "application_manager/rpc_service.h"

namespace sdl_rpc_plugin {
using namespace application_manager;

namespace commands {

GetWayPointsResponse::GetWayPointsResponse(
    const application_manager::commands::MessageSharedPtr& message,
    ApplicationManager& application_manager)
    : CommandResponseImpl(message, application_manager) {}

GetWayPointsResponse::~GetWayPointsResponse() {}

void GetWayPointsResponse::Run() {
  LOG4CXX_AUTO_TRACE(logger_);

  application_manager_.GetRPCService().SendMessageToMobile(message_);
}

}  // namespace commands

}  // namespace application_manager