EventData.h
Go to the documentation of this file.
1 #ifndef EVENT_DATA_H
2 #define EVENT_DATA_H
3 
5 // Copyright (c) 2020 Digital Barriers
7 
21 #include "StreamData.h"
22 #include "Pimpl.h"
23 
24 namespace EdgeVisDecoderSDK
25 {
26  class EventDataImpl;
27 
28  class EventData : public StreamData
29  {
30  public :
31  EventData(std::weak_ptr<EventDataImpl> pimpl);
32  DB_EDGEVIS_SDK EventData(StreamData data);
33  DB_EDGEVIS_SDK virtual ~EventData();
34 
35  DB_EDGEVIS_SDK int64_t GetEventID() const;
36  DB_EDGEVIS_SDK std::wstring GetEventType() const;
37  DB_EDGEVIS_SDK int64_t GetTimestamp() const;
38  DB_EDGEVIS_SDK std::wstring GetEvents() const;
39  DB_EDGEVIS_SDK std::wstring GetDescription() const;
40  DB_EDGEVIS_SDK std::wstring GetSource() const;
41  DB_EDGEVIS_SDK int GetVersion() const;
42  DB_EDGEVIS_SDK int32_t GetInput() const;
43  DB_EDGEVIS_SDK std::wstring ToString() const;
44  DB_EDGEVIS_SDK bool IsValid();
45  DB_EDGEVIS_SDK std::wstring DisplayString(bool concise = false) const;
46  };
47 }
48 
49 #endif // EVENT_DATA_H
An Event received from the Encoder by the decoder library.
Definition: EventData.h:28
This is the base class for the StreamData objects.
Definition: StreamData.h:27
The EdgeVis Decoder SDK namespace.