1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-09-30 01:33:31 +02:00
doorlockd-mirror/doorlockd/lib/doormessage.h

18 lines
323 B
C
Raw Normal View History

#ifndef DOORMESSAGE_H
#define DOORMESSAGE_H
2015-10-02 16:40:12 +02:00
struct Doormessage
{
Doormessage(bool isUnlockButton,
bool isLockButton,
bool isEmergencyUnlock);
Doormessage();
bool isUnlockButton = { false };
bool isLockButton = { false };
bool isEmergencyUnlock = { false };
};
#endif