CARLA
Unreal/CarlaUE4/Plugins/Carla/Source/Carla/Sensor/RssSensor.h
Go to the documentation of this file.
1 // Copyright (c) 2019 Intel Labs.
2 //
3 // This work is licensed under the terms of the MIT license.
4 // For a copy, see <https://opensource.org/licenses/MIT>.
5 
6 #pragma once
7 
9 
11 
12 #include "RssSensor.generated.h"
13 
14 /// RSS sensor representation
15 /// The actual calculation is done one client side
16 UCLASS()
17 class CARLA_API ARssSensor : public ASensor
18 {
19  GENERATED_BODY()
20 
21 public:
22 
23  static FActorDefinition GetSensorDefinition();
24 
25  ARssSensor(const FObjectInitializer &ObjectInitializer);
26 
27 };
A definition of a Carla Actor with all the variation and attributes.
RSS sensor representation The actual calculation is done one client side.