You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
284 B

#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