BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
IQRFListener.h
1 #pragma once
2 
3 #include <Poco/SharedPtr.h>
4 
5 namespace BeeeOn {
6 
7 class IQRFEvent;
8 
12 class IQRFListener {
13 public:
14  typedef Poco::SharedPtr<IQRFListener> Ptr;
15 
16  virtual ~IQRFListener();
17 
22  virtual void onReceiveDPA(const IQRFEvent &info) = 0;
23 };
24 
25 }
Definition: IQRFListener.h:12
virtual void onReceiveDPA(const IQRFEvent &info)=0
Definition: IQRFEvent.h:15