ArchiveRecordingInfo.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
5 #pragma once
6 
7 #include <string>
8 #include <list>
9 #include "EdgeVisSDK.h"
10 #include "OpResult.h"
11 #include "Pimpl.h"
12 
24 namespace EdgeVisDecoderSDK
25 {
26  class ArchiveRecordingInfoImpl;
27 
28  class ArchiveRecordingInfo : public EdgeVisSDKPimpl<ArchiveRecordingInfoImpl>
29  {
30  public:
31  typedef std::pair< int64_t, int64_t> ArchiveRecordingsListPair;
32  typedef std::vector< ArchiveRecordingsListPair > ArchiveRecordingsList;
33 
34  public:
35  DB_EDGEVIS_SDK ArchiveRecordingInfo();
36 
37  DB_EDGEVIS_SDK virtual ~ArchiveRecordingInfo();
38 
39  void Reset();
40 
41  void SetStartTime(int64_t start_ts);
42 
49  DB_EDGEVIS_SDK int64_t GetStartTime();
50 
51  void SetEndTime(int64_t end_ts);
52 
59  DB_EDGEVIS_SDK int64_t GetEndTime();
60 
61  void SetInput(int32_t input);
62 
69  DB_EDGEVIS_SDK int32_t GetInput();
70 
85  DB_EDGEVIS_SDK ArchiveRecordingsList GetRecordings();
86 
87  void SetMore(bool more);
88 
98  DB_EDGEVIS_SDK bool GetMore();
99  };
100 }
The EdgeVis Decoder SDK namespace.