forked from avTranscoder/avTranscoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibrary.hpp
More file actions
45 lines (32 loc) · 902 Bytes
/
Library.hpp
File metadata and controls
45 lines (32 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef _AV_TRANSCODER_DESCRIPTION_HPP_
#define _AV_TRANSCODER_DESCRIPTION_HPP_
#include <AvTranscoder/common.hpp>
#include <vector>
#include <string>
namespace avtranscoder
{
class AvExport Library
{
public:
Library(const std::string& name, const std::string& license, const size_t major, const size_t minor,
const size_t release);
std::string getName();
std::vector<size_t> getVersion();
std::string getStringVersion();
size_t getMajorVersion();
size_t getMinorVersion();
size_t getReleaseVersion();
std::string getLicense();
private:
std::string _name;
std::string _licence;
size_t _major;
size_t _minor;
size_t _release;
};
typedef std::vector<Library> Libraries;
Libraries AvExport getLibraries();
std::vector<std::string> AvExport getInputExtensions();
std::vector<std::string> AvExport getOutputExtensions();
}
#endif