CARLA
 
载入中...
搜索中...
未找到
GarbageCollectionPolicy.h
浏览该文件的文档.
1// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
2// de Barcelona (UAB).
3//
4// This work is licensed under the terms of the MIT license.
5// For a copy, see <https://opensource.org/licenses/MIT>.
6
7#pragma once // 只包含一次的预处理指令
8
9namespace carla { // 定义carla命名空间
10namespace client { // 定义client子命名空间
11
12 enum class GarbageCollectionPolicy { // 定义垃圾回收策略的枚举类
13 Disabled, // 禁用垃圾回收
14 Enabled, // 启用垃圾回收
15 Inherit // 继承垃圾回收设置
16 };
17
18} // namespace client
19} // namespace carla
CARLA模拟器的主命名空间。
Definition Carla.cpp:139
包含CARLA客户端相关类和函数的命名空间。