Add Static Devices

This commit is contained in:
2020-05-01 11:39:46 +02:00
parent 157b1ceb51
commit 21dbdd41d9
12 changed files with 400 additions and 327 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef UTIL_PROBEABLEDEVICE_H
#define UTIL_PROBEABLEDEVICE_H
#include <string>
namespace PresenceDetection {
namespace Util {
class ProbeableDevice
{
public:
virtual int ProbeCounter() const = 0;
virtual void IncrementProbeCounter() = 0;
virtual void ResetProbeCounter() = 0;
};
} // namespace Util
} // namespace PresenceDetection
#endif // UTIL_PROBEABLEDEVICE_H