CARLA
 
载入中...
搜索中...
未找到
RoadParser.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
9#include <vector>
10#include <string>
11
12namespace pugi {
13 class xml_document;
14} // namespace pugi
15
16namespace carla {
17
18namespace road {
19 class MapBuilder;
20} // namespace road
21
22namespace opendrive {
23namespace parser {
24
25 class RoadParser {
26 public:
27
28 static void Parse(
29 const pugi::xml_document &xml,
30 carla::road::MapBuilder &map_builder);
31 };
32
33} // namespace parser
34} // namespace opendrive
35} // namespace carla
static void Parse(const pugi::xml_document &xml, carla::road::MapBuilder &map_builder)
This file contains definitions of common data structures used in traffic manager.
Definition Carla.cpp:133