summaryrefslogtreecommitdiff
path: root/src/components/application_manager/include/application_manager/commands/mobile/subscribe_way_points_response.h
blob: 6514a3e7aa1197e9230efd2e2268e7e545f57821 (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
29
30
31
32
33
34
35
36
37
38
#ifndef SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_COMMANDS_MOBILE_SUBSCRIBE_WAY_POINTS_RESPONSE_H_
#define SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_COMMANDS_MOBILE_SUBSCRIBE_WAY_POINTS_RESPONSE_H_

#include "application_manager/commands/command_response_impl.h"
#include "utils/macro.h"

namespace application_manager {

namespace commands {

/**
 * @brief SubscribeWayPointsResponse command class
 **/
class SubscribeWayPointsResponse : public CommandResponseImpl {
public:
  /**
   * \brief SubscribeWayPointsResponse class constructor
   **/
  explicit SubscribeWayPointsResponse(const MessageSharedPtr& message);

  /**
   * \brief SubscribeWayPointsResponse class destructor
   **/
  virtual ~SubscribeWayPointsResponse();

  /**
   * @brief Execute command
   **/
  virtual void Run();
private:
  DISALLOW_COPY_AND_ASSIGN(SubscribeWayPointsResponse);
};

} // commands

} // application_manager

#endif // SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_COMMANDS_MOBILE_SUBSCRIBE_WAY_POINTS_RESPONSE_H_