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.
2021-06-28 15:57:39 +02:00

14 lines
212 B
C++

#include "zigbeenode.h"
ZigbeeNode::ZigbeeNode(QUuid networkUuid, QObject *parent) :
QObject(parent),
m_networkUuid(networkUuid)
{
}
QUuid ZigbeeNode::networkUuid() const
{
return m_networkUuid;
}