exc/udemy-cpp/exc01/AdFunctions.h

29 lines
601 B
C
Raw Permalink Normal View History

#pragma once
#include "AdTypes.h"
2023-07-13 18:59:42 +02:00
namespace Ad
{
namespace Utils
{
constexpr float kph_to_mps(const float kph);
} // namespace Ad::Utils
namespace Data
{
2023-07-26 14:17:04 +02:00
Types::Vehicle init_ego_vehicle();
Types::NeighborVehicles init_vehicles();
2023-07-13 18:59:42 +02:00
} // namespace Ad::Data
namespace Visualize
{
2023-07-26 14:17:04 +02:00
void print_vehicle(const Types::Vehicle &vehicle);
void print_neighbor_vehicles(const Types::NeighborVehicles &vehicles);
2023-07-13 18:59:42 +02:00
2023-07-26 14:17:04 +02:00
void print_scene(const Types::Vehicle &ego_vehicle,
const Types::NeighborVehicles &vehicles);
} // namespace Ad::Visualize
2023-07-13 18:59:42 +02:00
} // namespace Ad