ArchiveFile.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
22 #pragma once
23 
24 #include "EdgeVisSDK.h"
25 #include "ArchiveFileSource.h"
26 #include "Pimpl.h"
27 
28 #include <string>
29 #include <vector>
30 
31 namespace EdgeVisDecoderSDK
32 {
33  class ArchiveFileImpl;
34 
35  class ArchiveFile : public EdgeVisSDKPimpl<ArchiveFileImpl>
36  {
37  public:
38  DB_EDGEVIS_SDK ArchiveFile();
39  DB_EDGEVIS_SDK ArchiveFile(const std::wstring& name, int32_t duration, const int64_t size, const ArchiveFileSource source, const std::wstring& metadata);
40 
41  DB_EDGEVIS_SDK virtual ~ArchiveFile();
42 
47  DB_EDGEVIS_SDK std::wstring Name() const;
48 
53  DB_EDGEVIS_SDK int32_t Duration() const;
54 
59  DB_EDGEVIS_SDK int64_t Size() const;
60 
65  DB_EDGEVIS_SDK ArchiveFileSource Source() const;
66 
71  DB_EDGEVIS_SDK std::wstring Metadata() const;
72  };
73 }
ArchiveFileSource
The possible sources of an archive file.
Definition: ArchiveFileSource.h:20
DB_EDGEVIS_SDK int64_t Size() const
Gets the size of the archive file in bytes.
DB_EDGEVIS_SDK int32_t Duration() const
Gets the duration name of the archive file.
DB_EDGEVIS_SDK ArchiveFileSource Source() const
Gets the source of the archive file.
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK std::wstring Name() const
Gets the file name of the archive file.
A simple container class for information about a file on a remote archive device connected to an Enco...
Definition: ArchiveFile.h:35
DB_EDGEVIS_SDK std::wstring Metadata() const
Gets any metadata associated with this archive file.