CARLA
 
载入中...
搜索中...
未找到
CarlaListener.h
浏览该文件的文档.
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
10namespace carla {
11namespace ros2 {
12
13 class CarlaListenerImpl;
14
16 public:
19 CarlaListener(const CarlaListener&) = delete;
23
24 std::unique_ptr<CarlaListenerImpl> _impl;
25 };
26}
27}
std::unique_ptr< CarlaListenerImpl > _impl
CarlaListener & operator=(const CarlaListener &)=delete
CarlaListener(const CarlaListener &)=delete
CarlaListener & operator=(CarlaListener &&)=delete
CarlaListener(CarlaListener &&)=delete
This file contains definitions of common data structures used in traffic manager.
Definition Carla.cpp:133