CHG: changes some enums

This commit is contained in:
Henry Winkel
2023-07-05 17:48:01 +02:00
parent 4c1fb526b1
commit 1a878af6a5
4 changed files with 7 additions and 6 deletions

View File

@@ -63,7 +63,7 @@ namespace SimCore
/// @brief creates a SimTrack out of a string message
/// @param msg
/// @return SimTrack Oject
static std::unique_ptr<SimCore::SimTrack> unpack(std::string msg);
static std::unique_ptr<SimCore::SimTrack> unpack(std::string msgString);
public:
Data<double> Speed;

View File

@@ -69,6 +69,7 @@ enum EffectorKind : std::uint32_t {
enum TrackKind : std::uint8_t {
UNKNOWN_TRACK,
SIM_TRACK,
GROUND_TRUTH_TRACK,
OWN_TRACK,
RADAR_TRACK,