mirror of
https://github.com/DrKLO/Telegram.git
synced 2025-01-09 11:44:14 +01:00
14 lines
374 B
C++
14 lines
374 B
C++
|
#include "VideoCaptureInterface.h"
|
||
|
|
||
|
#include "VideoCaptureInterfaceImpl.h"
|
||
|
|
||
|
namespace tgcalls {
|
||
|
|
||
|
std::unique_ptr<VideoCaptureInterface> VideoCaptureInterface::Create(std::shared_ptr<PlatformContext> platformContext) {
|
||
|
return std::make_unique<VideoCaptureInterfaceImpl>(platformContext);
|
||
|
}
|
||
|
|
||
|
VideoCaptureInterface::~VideoCaptureInterface() = default;
|
||
|
|
||
|
} // namespace tgcalls
|