roo_transceivers
API Documentation for roo_transceivers
Loading...
Searching...
No Matches
notification.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace roo_transceivers {
7
8/// Listener for universe-level change notifications.
10 public:
11 virtual ~EventListener() = default;
12
13 /// Called when the set of devices changes.
14 virtual void devicesChanged() {}
15 /// Called when new readings are available.
16 virtual void newReadingsAvailable() {}
17};
18
19} // namespace roo_transceivers
Listener for universe-level change notifications.
Definition notification.h:9
virtual void newReadingsAvailable()
Called when new readings are available.
virtual ~EventListener()=default
virtual void devicesChanged()
Called when the set of devices changes.