ZModoRecorder.cpp 737 B

1234567891011121314151617181920212223242526272829303132
  1. #include "ZModoRecorder.h"
  2. #include <HttpClient.h>
  3. #include <Logging.h>
  4. namespace CameraRecorder {
  5. namespace Recorder {
  6. ZModoRecorder::ZModoRecorder(Http::HttpClient* pHttpClient, const Settings& settings) :
  7. m_pHttpClient(pHttpClient),
  8. m_settings(settings)
  9. {
  10. }
  11. ZModoRecorder::~ZModoRecorder()
  12. {
  13. }
  14. std::string ZModoRecorder::Snapshot(ctpl::thread_pool* pThreadPool)
  15. {
  16. Logging::Log(Logging::Severity::Debug, "ZModoRecorder Snapshot");
  17. return std::string();
  18. }
  19. std::string ZModoRecorder::Video(ctpl::thread_pool* pThreadPool, const std::string& ffmpeg)
  20. {
  21. Logging::Log(Logging::Severity::Debug, "ZModoRecorder Video");
  22. return std::string();
  23. }
  24. } // namespace Recorder
  25. } // namespace CameraRecorder