CamsNotificationEventParamDesc.h
Go to the documentation of this file.
1 // Copyright (c) 2017 Digital Barriers
4 
17 
19 #pragma once
20 
21 #include "EdgeVisSDK.h"
22 #include "Pimpl.h"
23 #include <vector>
24 
25 namespace EdgeVisDecoderSDK
26 {
27  class CamsNotificationEventParamDescImpl;
28 
29  class CamsNotificationEventParamDesc : public EdgeVisSDKPimpl<CamsNotificationEventParamDescImpl>
30  {
31  public:
32  DB_EDGEVIS_SDK CamsNotificationEventParamDesc();
33  CamsNotificationEventParamDesc(std::wstring name, std::wstring description);
34  EdgeVisSDKPimplWeakConstructor(CamsNotificationEventParamDesc);
35  DB_EDGEVIS_SDK ~CamsNotificationEventParamDesc();
36 
37  public:
38 
44  DB_EDGEVIS_SDK std::wstring GetName() const;
45 
51  DB_EDGEVIS_SDK std::wstring GetDescription() const;
52  };
53 }
DB_EDGEVIS_SDK std::wstring GetName() const
Retrieve the name of the event parameter.
DB_EDGEVIS_SDK std::wstring GetDescription() const
Retrieve a description of the event parameter.
The EdgeVis Decoder SDK namespace.
Contains a summary of the event parameter information that forms part of a CAMS notification.
Definition: CamsNotificationEventParamDesc.h:29