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-07 00:24:54 +01:00

18 lines
349 B
C++

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