16 lines
307 B
C++
16 lines
307 B
C++
#pragma once
|
|
|
|
#include "Thing.h"
|
|
|
|
namespace Passer {
|
|
namespace RoboidControl {
|
|
|
|
/// @brief A sensor is a thing which can perform measurements in the environment
|
|
class Sensor : public Thing {
|
|
public:
|
|
Sensor();
|
|
};
|
|
|
|
} // namespace RoboidControl
|
|
} // namespace Passer
|
|
using namespace Passer::RoboidControl; |