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