Carma-platform v4.2.0
CARMA Platform is built on robot operating system (ROS) and utilizes open source software (OSS) that enables Cooperative Driving Automation (CDA) features to allow Automated Driving Systems to interact and cooperate with infrastructure and other vehicles through communication.
external_object_list_to_sdsm_node.cpp File Reference
#include <rclcpp/rclcpp.hpp>
#include <carma_cooperative_perception/external_object_list_to_sdsm_component.hpp>
#include <memory>
Include dependency graph for external_object_list_to_sdsm_node.cpp:

Go to the source code of this file.

Functions

auto main (int argc, char *argv[]) -> int
 

Function Documentation

◆ main()

auto main ( int  argc,
char *  argv[] 
) -> int

Definition at line 21 of file external_object_list_to_sdsm_node.cpp.

22{
23 rclcpp::init(argc, argv);
24
25 auto node{std::make_shared<carma_cooperative_perception::ExternalObjectListToSdsmNode>(
26 rclcpp::NodeOptions{})};
27
28 rclcpp::executors::SingleThreadedExecutor executor;
29 executor.add_node(node->get_node_base_interface());
30 executor.spin();
31
32 rclcpp::shutdown();
33
34 return 0;
35}