BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
CommandDispatcherListener.h
1 #pragma once
2 
3 #include <Poco/SharedPtr.h>
4 
5 #include "core/Command.h"
6 
7 namespace BeeeOn {
8 
13 public:
14  typedef Poco::SharedPtr<CommandDispatcherListener> Ptr;
15 
17 
18  virtual ~CommandDispatcherListener();
19 
20  virtual void onDispatch(const Command::Ptr cmd) = 0;
21 };
22 
23 }
Definition: CommandDispatcherListener.h:12