Add PDF writer.

This commit is contained in:
jmsgrogan 2022-01-01 18:46:31 +00:00
parent c05b7b6315
commit 9c116b1efd
72 changed files with 1819 additions and 114 deletions

16
src/video/Video.cpp Normal file
View 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;
}