HiveMind
IHandshakeUI.h
Go to the documentation of this file.
1 #ifndef IHANDSHAKEUI_H_
2 #define IHANDSHAKEUI_H_
3 
6 class IHandshakeUI {
7  public:
8  virtual ~IHandshakeUI() = default;
9 
12  virtual void handshake(bool handshaked) = 0;
13 };
14 
15 #endif // IHANDSHAKEUI_H_
IHandshakeUI
Manages the interface if a device was handshaked (greeted) with or not. Lights the appropriate LED to...
Definition: IHandshakeUI.h:6
IHandshakeUI::~IHandshakeUI
virtual ~IHandshakeUI()=default
IHandshakeUI::handshake
virtual void handshake(bool handshaked)=0
Sets the handshake status of the device.