You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
506 B
C++
28 lines
506 B
C++
//
|
|
// Created by Matthew on 2025/3/4.
|
|
//
|
|
|
|
#ifndef MICROPHOTO_YUSHICTRL_H
|
|
#define MICROPHOTO_YUSHICTRL_H
|
|
|
|
#include "VendorCtrl.h"
|
|
|
|
class YuShiCtrl : public VendorCtrl
|
|
{
|
|
public:
|
|
using VendorCtrl::VendorCtrl;
|
|
virtual ~YuShiCtrl();
|
|
|
|
virtual bool SetOsd();
|
|
virtual void EnableOsd(bool enable);
|
|
virtual std::string GetStreamingUrl(uint8_t channel);
|
|
virtual bool UpdateTime(time_t ts);
|
|
virtual bool TakePhoto(std::vector<uint8_t>& img);
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
#endif //MICROPHOTO_YUSHICTRL_H
|