Add MultiSnapshot
This commit is contained in:
+38
-32
@@ -1,32 +1,38 @@
|
||||
#include "ZModoRecorder.h"
|
||||
#include <HttpClient.h>
|
||||
#include <Logging.h>
|
||||
|
||||
|
||||
namespace CameraRecorder {
|
||||
namespace Recorder {
|
||||
|
||||
ZModoRecorder::ZModoRecorder(Http::HttpClient* pHttpClient, const Settings& settings) :
|
||||
m_pHttpClient(pHttpClient),
|
||||
m_settings(settings)
|
||||
{
|
||||
}
|
||||
|
||||
ZModoRecorder::~ZModoRecorder()
|
||||
{
|
||||
}
|
||||
|
||||
std::string ZModoRecorder::Snapshot(ctpl::thread_pool* pThreadPool)
|
||||
{
|
||||
Logging::Log(Logging::Severity::Debug, "ZModoRecorder Snapshot");
|
||||
return std::string();
|
||||
}
|
||||
|
||||
std::string ZModoRecorder::Video(ctpl::thread_pool* pThreadPool, const std::string& ffmpeg)
|
||||
{
|
||||
Logging::Log(Logging::Severity::Debug, "ZModoRecorder Video");
|
||||
return std::string();
|
||||
}
|
||||
|
||||
} // namespace Recorder
|
||||
} // namespace CameraRecorder
|
||||
#include "ZModoRecorder.h"
|
||||
#include <HttpClient.h>
|
||||
#include <Logging.h>
|
||||
|
||||
|
||||
namespace CameraRecorder {
|
||||
namespace Recorder {
|
||||
|
||||
ZModoRecorder::ZModoRecorder(Http::HttpClient* pHttpClient, const Settings& settings) :
|
||||
m_pHttpClient(pHttpClient),
|
||||
m_settings(settings)
|
||||
{
|
||||
}
|
||||
|
||||
ZModoRecorder::~ZModoRecorder()
|
||||
{
|
||||
}
|
||||
|
||||
std::string ZModoRecorder::Snapshot(ctpl::thread_pool* pThreadPool)
|
||||
{
|
||||
Logging::Log(Logging::Severity::Debug, "ZModoRecorder Snapshot");
|
||||
return std::string();
|
||||
}
|
||||
|
||||
std::string ZModoRecorder::MultiSnapshot(ctpl::thread_pool* pThreadPool, int numberOfImages)
|
||||
{
|
||||
Logging::Log(Logging::Severity::Debug, "ZModoRecorder MultiSnapshot");
|
||||
return std::string();
|
||||
}
|
||||
|
||||
std::string ZModoRecorder::Video(ctpl::thread_pool* pThreadPool, const std::string& ffmpeg)
|
||||
{
|
||||
Logging::Log(Logging::Severity::Debug, "ZModoRecorder Video");
|
||||
return std::string();
|
||||
}
|
||||
|
||||
} // namespace Recorder
|
||||
} // namespace CameraRecorder
|
||||
|
||||
Reference in New Issue
Block a user