stuff-from-scratch/src/video/Video.h
2022-01-01 18:46:31 +00:00

18 lines
272 B
C++

#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>;