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