BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
GWGatewayAccepted.h
1 #pragma once
2 
3 #include <Poco/SharedPtr.h>
4 #include <Poco/JSON/Object.h>
5 
6 #include "gwmessage/GWMessage.h"
7 
8 namespace BeeeOn {
9 
21 class GWGatewayAccepted : public GWMessage {
22 public:
23  typedef Poco::SharedPtr<GWGatewayAccepted> Ptr;
24 
26  GWGatewayAccepted(const Poco::JSON::Object::Ptr object);
27 };
28 
29 }
The GWMessage is abstract class representing messages (including their contents), that are being sent...
Definition: GWMessage.h:21
Represents message sent by the server to the gateway after successful registration.
Definition: GWGatewayAccepted.h:21