Add Static Devices
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user