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.
powersync-zigbee/libnymea-zigbee/zigbeemanufacturer.h

22 lines
315 B
C++

#ifndef ZIGBEEMANUFACTURER_H
#define ZIGBEEMANUFACTURER_H
#include <QString>
class ZigbeeManufacturer
{
public:
ZigbeeManufacturer();
ZigbeeManufacturer(quint16 id);
quint16 id() const;
QString name() const;
private:
quint16 m_id = 0;
QString m_name;
};
#endif // ZIGBEEMANUFACTURER_H