Add interface for device features in logid::Device

This commit is contained in:
pixl
2020-06-24 02:05:05 -04:00
parent 1d001237ba
commit 152b9e6cfd
2 changed files with 17 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef LOGID_FEATURES_DEVICEFEATURE_H
#define LOGID_FEATURES_DEVICEFEATURE_H
namespace logid {
namespace features
{
class DeviceFeature
{
public:
virtual void configure() = 0;
virtual void listen() = 0;
};
}}
#endif //LOGID_FEATURES_DEVICEFEATURE_H