DigooRecorder.cpp 898 B

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