CommandData.h
Go to the documentation of this file.
1 #ifndef COMMAND_DATA_H
2 #define COMMAND_DATA_H
3 
5 // Copyright (c) 2019 Digital Barriers
7 
21 #include "StreamData.h"
22 #include "Pimpl.h"
23 
24 namespace EdgeVisDecoderSDK
25 {
26  class CommandDataImpl;
27 
28  class CommandData : public StreamData
29  {
30  public :
31  CommandData();
32  CommandData(std::weak_ptr<CommandDataImpl> pimpl);
33 
34  DB_EDGEVIS_SDK CommandData(StreamData data);
35  DB_EDGEVIS_SDK virtual ~CommandData();
36 
37  DB_EDGEVIS_SDK bool Success() const;
38  DB_EDGEVIS_SDK std::string GetMessage() const;
39  DB_EDGEVIS_SDK byte_array GetBytes() const;
40  };
41 }
42 
43 #endif // !COMMAND_DATA_H
This is the base class for the StreamData objects.
Definition: StreamData.h:27
The EdgeVis Decoder SDK namespace.
A command received by the dewclaw library.
Definition: CommandData.h:28