From 3072fcb2be9171648db6b4c1026b605a29f04118 Mon Sep 17 00:00:00 2001 From: nsubiron Date: Thu, 15 Nov 2018 13:01:27 +0100 Subject: [PATCH] Add missing license notices --- LibCarla/source/carla/opendrive/OpenDrive.cpp | 6 ++++++ LibCarla/source/carla/opendrive/parser/GeometryParser.cpp | 6 ++++++ LibCarla/source/carla/opendrive/parser/GeometryParser.h | 6 ++++++ LibCarla/source/carla/opendrive/parser/JunctionParser.cpp | 6 ++++++ LibCarla/source/carla/opendrive/parser/JunctionParser.h | 6 ++++++ LibCarla/source/carla/opendrive/parser/LaneParser.cpp | 6 ++++++ LibCarla/source/carla/opendrive/parser/LaneParser.h | 6 ++++++ LibCarla/source/carla/opendrive/parser/OpenDriveParser.h | 6 ++++++ LibCarla/source/carla/opendrive/parser/ProfilesParser.cpp | 6 ++++++ LibCarla/source/carla/opendrive/parser/ProfilesParser.h | 6 ++++++ LibCarla/source/carla/opendrive/parser/RoadLinkParser.cpp | 6 ++++++ LibCarla/source/carla/opendrive/parser/RoadLinkParser.h | 6 ++++++ .../source/carla/opendrive/parser/TrafficSignalsParser.cpp | 6 ++++++ .../source/carla/opendrive/parser/TrafficSignalsParser.h | 6 ++++++ LibCarla/source/carla/opendrive/types.h | 6 ++++++ .../CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.cpp | 4 +++- Unreal/CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.h | 6 +++++- 17 files changed, 98 insertions(+), 2 deletions(-) diff --git a/LibCarla/source/carla/opendrive/OpenDrive.cpp b/LibCarla/source/carla/opendrive/OpenDrive.cpp index c3140b938..7fcf5a5ac 100644 --- a/LibCarla/source/carla/opendrive/OpenDrive.cpp +++ b/LibCarla/source/carla/opendrive/OpenDrive.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #include "OpenDrive.h" #include "../road/MapBuilder.h" diff --git a/LibCarla/source/carla/opendrive/parser/GeometryParser.cpp b/LibCarla/source/carla/opendrive/parser/GeometryParser.cpp index 90c812bfd..b56691864 100644 --- a/LibCarla/source/carla/opendrive/parser/GeometryParser.cpp +++ b/LibCarla/source/carla/opendrive/parser/GeometryParser.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #include "GeometryParser.h" #include diff --git a/LibCarla/source/carla/opendrive/parser/GeometryParser.h b/LibCarla/source/carla/opendrive/parser/GeometryParser.h index b3c2a477f..f2b083bf7 100644 --- a/LibCarla/source/carla/opendrive/parser/GeometryParser.h +++ b/LibCarla/source/carla/opendrive/parser/GeometryParser.h @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #pragma once #include "../types.h" diff --git a/LibCarla/source/carla/opendrive/parser/JunctionParser.cpp b/LibCarla/source/carla/opendrive/parser/JunctionParser.cpp index 81dcf75da..c41d5c006 100644 --- a/LibCarla/source/carla/opendrive/parser/JunctionParser.cpp +++ b/LibCarla/source/carla/opendrive/parser/JunctionParser.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #include "JunctionParser.h" void carla::opendrive::parser::JunctionParser::Parse( diff --git a/LibCarla/source/carla/opendrive/parser/JunctionParser.h b/LibCarla/source/carla/opendrive/parser/JunctionParser.h index 7d25b26f8..751dfe82a 100644 --- a/LibCarla/source/carla/opendrive/parser/JunctionParser.h +++ b/LibCarla/source/carla/opendrive/parser/JunctionParser.h @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #pragma once #include "../types.h" diff --git a/LibCarla/source/carla/opendrive/parser/LaneParser.cpp b/LibCarla/source/carla/opendrive/parser/LaneParser.cpp index 3b1d0065a..a964b680b 100644 --- a/LibCarla/source/carla/opendrive/parser/LaneParser.cpp +++ b/LibCarla/source/carla/opendrive/parser/LaneParser.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #include "LaneParser.h" void carla::opendrive::parser::LaneParser::ParseLane( diff --git a/LibCarla/source/carla/opendrive/parser/LaneParser.h b/LibCarla/source/carla/opendrive/parser/LaneParser.h index 5adda0535..e3f3258ef 100644 --- a/LibCarla/source/carla/opendrive/parser/LaneParser.h +++ b/LibCarla/source/carla/opendrive/parser/LaneParser.h @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #pragma once #include "../types.h" diff --git a/LibCarla/source/carla/opendrive/parser/OpenDriveParser.h b/LibCarla/source/carla/opendrive/parser/OpenDriveParser.h index 100b2dabc..19ec60eac 100644 --- a/LibCarla/source/carla/opendrive/parser/OpenDriveParser.h +++ b/LibCarla/source/carla/opendrive/parser/OpenDriveParser.h @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #pragma once #include "TrafficSignalsParser.h" diff --git a/LibCarla/source/carla/opendrive/parser/ProfilesParser.cpp b/LibCarla/source/carla/opendrive/parser/ProfilesParser.cpp index c8c5f10c6..89a435737 100644 --- a/LibCarla/source/carla/opendrive/parser/ProfilesParser.cpp +++ b/LibCarla/source/carla/opendrive/parser/ProfilesParser.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #include "ProfilesParser.h" void carla::opendrive::parser::ProfilesParser::ParseElevation( diff --git a/LibCarla/source/carla/opendrive/parser/ProfilesParser.h b/LibCarla/source/carla/opendrive/parser/ProfilesParser.h index bab7ca70a..94e7c9520 100644 --- a/LibCarla/source/carla/opendrive/parser/ProfilesParser.h +++ b/LibCarla/source/carla/opendrive/parser/ProfilesParser.h @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #pragma once #include "../types.h" diff --git a/LibCarla/source/carla/opendrive/parser/RoadLinkParser.cpp b/LibCarla/source/carla/opendrive/parser/RoadLinkParser.cpp index 65f432c38..3b55bbda2 100644 --- a/LibCarla/source/carla/opendrive/parser/RoadLinkParser.cpp +++ b/LibCarla/source/carla/opendrive/parser/RoadLinkParser.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #include "RoadLinkParser.h" #include diff --git a/LibCarla/source/carla/opendrive/parser/RoadLinkParser.h b/LibCarla/source/carla/opendrive/parser/RoadLinkParser.h index 5ed87870d..49dc753b5 100644 --- a/LibCarla/source/carla/opendrive/parser/RoadLinkParser.h +++ b/LibCarla/source/carla/opendrive/parser/RoadLinkParser.h @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #pragma once #include "../types.h" diff --git a/LibCarla/source/carla/opendrive/parser/TrafficSignalsParser.cpp b/LibCarla/source/carla/opendrive/parser/TrafficSignalsParser.cpp index af298ca92..879614ba9 100644 --- a/LibCarla/source/carla/opendrive/parser/TrafficSignalsParser.cpp +++ b/LibCarla/source/carla/opendrive/parser/TrafficSignalsParser.cpp @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #include "TrafficSignalsParser.h" void carla::opendrive::parser::TrafficSignalsParser::Parse( diff --git a/LibCarla/source/carla/opendrive/parser/TrafficSignalsParser.h b/LibCarla/source/carla/opendrive/parser/TrafficSignalsParser.h index 849a9502b..e7b9ac0fd 100644 --- a/LibCarla/source/carla/opendrive/parser/TrafficSignalsParser.h +++ b/LibCarla/source/carla/opendrive/parser/TrafficSignalsParser.h @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #pragma once #include "../types.h" diff --git a/LibCarla/source/carla/opendrive/types.h b/LibCarla/source/carla/opendrive/types.h index 8115c9cdf..98b02bfe7 100644 --- a/LibCarla/source/carla/opendrive/types.h +++ b/LibCarla/source/carla/opendrive/types.h @@ -1,3 +1,9 @@ +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . + #pragma once #include diff --git a/Unreal/CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.cpp b/Unreal/CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.cpp index bc43f9be4..12f8da8e6 100644 --- a/Unreal/CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.cpp +++ b/Unreal/CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.cpp @@ -1,5 +1,7 @@ // Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma -// de Barcelona (UAB). This work is licensed under the terms of the MIT license. +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. // For a copy, see . #include "Carla.h" diff --git a/Unreal/CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.h b/Unreal/CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.h index 35d85f44b..29f60e5e2 100644 --- a/Unreal/CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.h +++ b/Unreal/CarlaUE4/Plugins/Carla/Source/Carla/OpenDriveActor.h @@ -1,4 +1,8 @@ -// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de Barcelona (UAB). This work is licensed under the terms of the MIT license. For a copy, see . +// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma +// de Barcelona (UAB). +// +// This work is licensed under the terms of the MIT license. +// For a copy, see . #pragma once