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