CARLA
CarlaLineInvasionPublisher.h
Go to the documentation of this file.
1 // Copyright (c) 2022 Computer Vision Center (CVC) at the Universitat Autonoma de Barcelona (UAB).
2 // This work is licensed under the terms of the MIT license.
3 // For a copy, see <https://opensource.org/licenses/MIT>.
4 
5 #pragma once
6 #define _GLIBCXX_USE_CXX11_ABI 0
7 
8 #include <memory>
9 
10 #include "CarlaPublisher.h"
11 
12 namespace carla {
13 namespace ros2 {
14 
15  struct CarlaLineInvasionPublisherImpl;
16 
18  public:
19  CarlaLineInvasionPublisher(const char* ros_name = "", const char* parent = "");
25 
26  bool Init();
27  bool Publish();
28  void SetData(int32_t seconds, uint32_t nanoseconds, const int32_t* data);
29  const char* type() const override { return "line invasion"; }
30 
31  private:
32  std::shared_ptr<CarlaLineInvasionPublisherImpl> _impl;
33  };
34 }
35 }
This file contains definitions of common data structures used in traffic manager. ...
Definition: Carla.cpp:133
void SetData(int32_t seconds, uint32_t nanoseconds, const int32_t *data)
CarlaLineInvasionPublisher & operator=(const CarlaLineInvasionPublisher &)
const std::string & parent() const
std::shared_ptr< CarlaLineInvasionPublisherImpl > _impl
CarlaLineInvasionPublisher(const char *ros_name="", const char *parent="")