ArchiveBookmark.h
Go to the documentation of this file.
1 // Copyright (c) 2019 Digital Barriers
4 
22 #pragma once
23 
24 #include "EdgeVisSDK.h"
25 #include "Pimpl.h"
26 
27 namespace EdgeVisDecoderSDK
28 {
29  class ArchiveBookmarkImpl;
30 
31  class ArchiveBookmark : public EdgeVisSDKPimpl<ArchiveBookmarkImpl>
32  {
33  public:
34 
35  DB_EDGEVIS_SDK ArchiveBookmark();
36  DB_EDGEVIS_SDK ArchiveBookmark(int64_t timestamp, int32_t index, int32_t input, const std::wstring& name, const std::wstring& description);
37  EdgeVisSDKPimplWeakConstructor(ArchiveBookmark);
38 
39  DB_EDGEVIS_SDK virtual ~ArchiveBookmark();
40 
45  DB_EDGEVIS_SDK int64_t GetTimeStamp() const;
46 
51  DB_EDGEVIS_SDK int32_t GetIndex() const;
52 
57  DB_EDGEVIS_SDK int32_t GetInput() const;
58 
63  DB_EDGEVIS_SDK std::wstring GetName() const;
64 
69  DB_EDGEVIS_SDK std::wstring GetDescription() const;
70 
76  DB_EDGEVIS_SDK int64_t GetCreatedTimeStamp() const;
77  };
78 }
DB_EDGEVIS_SDK int32_t GetInput() const
The input this bookmark is set against.
DB_EDGEVIS_SDK int64_t GetTimeStamp() const
The timestamp of the bookmark.
DB_EDGEVIS_SDK std::wstring GetDescription() const
The description of the bookmark.
DB_EDGEVIS_SDK std::wstring GetName() const
The name of the bookmark.
DB_EDGEVIS_SDK int32_t GetIndex() const
Index identifier of the bookmark.
DB_EDGEVIS_SDK int64_t GetCreatedTimeStamp() const
The timestamp that the bookmark was created A value of 0 indicates that the creation time is not know...
The EdgeVis Decoder SDK namespace.
Contains the details of an Archive bookmark.
Definition: ArchiveBookmark.h:31