This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-06 19:22:19 +01:00

17 lines
311 B
C++

#ifndef ZIGBEEHANDLER_H
#define ZIGBEEHANDLER_H
#include "zigbeenode.h"
class ZigbeeHandler
{
public:
ZigbeeHandler();
virtual ~ZigbeeHandler() = default;
virtual QString name() const = 0;
virtual bool handleNode(ZigbeeNode *node, const QUuid &networkUuid) = 0;
};
#endif // ZIGBEEHANDLER_H