CARLA
RoadParser.h
Go to the documentation of this file.
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 
12 namespace pugi {
13  class xml_document;
14 } // namespace pugi
15 
16 namespace carla {
17 
18 namespace road {
19  class MapBuilder;
20 } // namespace road
21 
22 namespace opendrive {
23 namespace 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
This file contains definitions of common data structures used in traffic manager. ...
Definition: Carla.cpp:133