BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
HotplugListener.h
1 #pragma once
2 
3 #include <Poco/SharedPtr.h>
4 
5 namespace BeeeOn {
6 
7 class HotplugEvent;
8 
10 public:
11  typedef Poco::SharedPtr<HotplugListener> Ptr;
12 
13  virtual ~HotplugListener();
14 
15  virtual void onAdd(const HotplugEvent &event);
16  virtual void onRemove(const HotplugEvent &event);
17  virtual void onChange(const HotplugEvent &event);
18  virtual void onMove(const HotplugEvent &event);
19 };
20 
21 }
Definition: HotplugListener.h:9
Definition: HotplugEvent.h:10