knx/src/knx/dpt.h
2019-06-03 22:15:32 +02:00

13 lines
283 B
C++

#pragma once
class Dpt
{
public:
Dpt();
Dpt(short mainGroup, short subGroup, short index = 0);
unsigned short mainGroup;
unsigned short subGroup;
unsigned short index;
bool operator==(const Dpt& other) const;
bool operator!=(const Dpt& other) const;
};