summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/commands/mobile/subscribe_way_points_response.cc
blob: bb0fc77c82458b0d613ae9eb44e640179f871b2c (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
#include "application_manager/application_manager_impl.h"
#include "application_manager/commands/mobile/subscribe_way_points_response.h"

namespace application_manager {

namespace commands {

SubscribeWayPointsResponse::SubscribeWayPointsResponse(
    const MessageSharedPtr &message)
    : CommandResponseImpl(message) {
}

SubscribeWayPointsResponse::~SubscribeWayPointsResponse() {
}

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

  ApplicationManagerImpl::instance()->SendMessageToMobile(message_);
}

}  // namespace commands

}  // namespace application_manager