38 lines
995 B
C++
38 lines
995 B
C++
|
#ifndef V2X_APP_HPP_EUIC2VFR
|
||
|
#define V2X_APP_HPP_EUIC2VFR
|
||
|
|
||
|
#include "rclcpp/rclcpp.hpp"
|
||
|
#include "std_msgs/msg/string.hpp"
|
||
|
#include "autoware_perception_msgs/msg/dynamic_object_array.hpp"
|
||
|
#include "tf2_msgs/msg/tf_message.hpp"
|
||
|
#include <boost/asio/io_service.hpp>
|
||
|
#include "autoware_v2x/cpm_application.hpp"
|
||
|
#include "autoware_v2x/time_trigger.hpp"
|
||
|
#include "autoware_v2x/link_layer.hpp"
|
||
|
#include "autoware_v2x/ethernet_device.hpp"
|
||
|
#include "autoware_v2x/positioning.hpp"
|
||
|
#include "autoware_v2x/security.hpp"
|
||
|
#include "autoware_v2x/router_context.hpp"
|
||
|
|
||
|
namespace v2x
|
||
|
{
|
||
|
class V2XApp
|
||
|
{
|
||
|
public:
|
||
|
V2XApp(rclcpp::Node*);
|
||
|
void start();
|
||
|
void objectsCallback(const autoware_perception_msgs::msg::DynamicObjectArray::ConstSharedPtr);
|
||
|
void tfCallback(const tf2_msgs::msg::TFMessage::ConstSharedPtr);
|
||
|
|
||
|
CpmApplication *cp;
|
||
|
|
||
|
private:
|
||
|
friend class CpmApplication;
|
||
|
friend class Application;
|
||
|
rclcpp::Node* node_;
|
||
|
bool tf_received_;
|
||
|
bool cp_started_;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|