Add namespace

This commit is contained in:
Pascal Serrarens 2024-01-02 11:55:03 +01:00
parent 7ef620bedb
commit ed89b91826

View File

@ -3,6 +3,9 @@
#include "Polar.h"
#include "Sensor.h"
namespace Passer {
namespace RoboidControl {
class TrackedObject {
public:
/// @brief An object tracked by the roboid
@ -61,3 +64,6 @@ protected:
static constexpr unsigned char confidenceDropSpeed = 2;
unsigned char confidence;
};
} // namespace RoboidControl
} // namespace Passer