PassThruData.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
20 #pragma once
21 
22 #include "StreamData.h"
23 #include "EdgeVisSDK.h"
24 
25 namespace EdgeVisDecoderSDK
26 {
27  class PassThruDataImpl;
28 
29  class PassThruData : public StreamData
30  {
31  public:
32 
33  PassThruData();
34  PassThruData(std::weak_ptr<PassThruDataImpl> pimpl);
35 
36  DB_EDGEVIS_SDK PassThruData(StreamData data);
37 
38  DB_EDGEVIS_SDK virtual ~PassThruData();
39 
45  DB_EDGEVIS_SDK const uint8_t* GetBytes() const;
46 
52  DB_EDGEVIS_SDK int32_t GetLength() const;
53 
54  };
55 }
DB_EDGEVIS_SDK int32_t GetLength() const
The the length of the data byte.
This is the base class for the StreamData objects.
Definition: StreamData.h:27
This is data that has been received at a port on the remote Encoder device and then sent back via the...
Definition: PassThruData.h:29
DB_EDGEVIS_SDK const uint8_t * GetBytes() const
Get a pointer to the byte data received from the port.
The EdgeVis Decoder SDK namespace.