EduArt Sensor Ring Library 3.0.0
Loading...
Searching...
No Matches
IDevice.hpp
1// Copyright (c) 2026 EduArt Robotik GmbH
2
3#pragma once
4
5#include "sensorring/platform/SensorringExport.hpp"
6
7namespace eduart {
8
9namespace device {
10
18struct SENSORRING_EXPORT IDevice {
19 virtual ~IDevice() = default;
20};
21
22} // namespace device
23
24} // namespace eduart
Thin base interface for all concrete devices in the SensorRing.
Definition IDevice.hpp:18