CamsNotificationEventDesc.h
Go to the documentation of this file.
1 // Copyright (c) 2017 Digital Barriers
4 
17 
19 #pragma once
20 
21 #include "EdgeVisSDK.h"
23 #include "Pimpl.h"
24 
25 #include <vector>
26 
27 namespace EdgeVisDecoderSDK
28 {
29  class CamsNotificationEventDescImpl;
30  class OnvifEvent;
31 
32  class CamsNotificationEventDesc : public EdgeVisSDKPimpl<CamsNotificationEventDescImpl>
33  {
34  public:
35  DB_EDGEVIS_SDK CamsNotificationEventDesc();
36  DB_EDGEVIS_SDK ~CamsNotificationEventDesc();
37  EdgeVisSDKPimplWeakConstructor(CamsNotificationEventDesc);
38 
39  public:
40 
46  DB_EDGEVIS_SDK int64_t GetId();
47 
53  DB_EDGEVIS_SDK int64_t GetTime();
54 
61  DB_EDGEVIS_SDK std::wstring GetEventType();
62 
68  DB_EDGEVIS_SDK std::wstring GetSource();
69 
76  DB_EDGEVIS_SDK std::vector<CamsNotificationEventParamDesc> GetEventParameters();
77 
84  DB_EDGEVIS_SDK std::wstring GetDisplayString();
85 
93  DB_EDGEVIS_SDK bool GetOnvifEvent(OnvifEvent& onvif_event);
94  };
95 }
Contains information on a source event for a CAMS notification.
Definition: CamsNotificationEventDesc.h:32
DB_EDGEVIS_SDK bool GetOnvifEvent(OnvifEvent &onvif_event)
Convert this notification event to an ONVIF event.
DB_EDGEVIS_SDK std::wstring GetSource()
Returns the source of the event, typically the encoder name.
Contains information relating to Onvif Events.
Definition: OnvifEvent.h:34
DB_EDGEVIS_SDK int64_t GetTime()
Gets the timestamp of the source event.
DB_EDGEVIS_SDK std::wstring GetEventType()
Gets the type of event.
DB_EDGEVIS_SDK std::wstring GetDisplayString()
Returns a display string for the event.
DB_EDGEVIS_SDK int64_t GetId()
Retrieve the ID for this event.
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK std::vector< CamsNotificationEventParamDesc > GetEventParameters()
Returns the list of parameters associated with this event.