Add PDF writer.
This commit is contained in:
parent
c05b7b6315
commit
9c116b1efd
72 changed files with 1819 additions and 114 deletions
18
src/video/Video.h
Normal file
18
src/video/Video.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
class Video
|
||||
{
|
||||
public:
|
||||
static std::unique_ptr<Video> Create();
|
||||
void SetPath(const std::string& path);
|
||||
std::string GetPath() const;
|
||||
|
||||
private:
|
||||
|
||||
std::string mPath;
|
||||
};
|
||||
|
||||
using VideoPtr = std::unique_ptr<Video>;
|
Loading…
Add table
Add a link
Reference in a new issue