Initial commit

This commit is contained in:
2020-05-01 11:25:56 +02:00
commit 4546808c73
33 changed files with 810 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef RECORDER_RECORDER_H
#define RECORDER_RECORDER_H
#include <ctpl_stl.h>
#include <string>
namespace CameraRecorder {
namespace Recorder {
class Recorder
{
public:
Recorder();
~Recorder();
virtual std::string Snapshot(ctpl::thread_pool* pThreadPool) = 0;
virtual std::string Video(ctpl::thread_pool* pThreadPool, const std::string& ffmpeg) = 0;
};
} // namespace Recorder
} // namespace CameraRecorder
#endif // RECORDER_RECORDER_H