mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-11-01 06:57:04 +01:00
70a4b3de03
- Improved doormessage - Moved isOpen from Doormessage to Logic
13 lines
262 B
C++
13 lines
262 B
C++
#include "doormessage.h"
|
|
|
|
Doormessage::Doormessage()
|
|
{
|
|
}
|
|
|
|
Doormessage::Doormessage(bool isUnlockButton, bool isLockButton, bool isEmergencyUnlock) :
|
|
isUnlockButton(isUnlockButton),
|
|
isLockButton(isLockButton),
|
|
isEmergencyUnlock(isEmergencyUnlock)
|
|
{
|
|
}
|