mirror of
https://github.com/thelsing/knx.git
synced 2025-09-14 17:50:55 +02:00
13 lines
283 B
C++
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;
|
|
}; |