11 lines
201 B
C++
11 lines
201 B
C++
#pragma once
|
|
|
|
#include "VideoIOConfig.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
class VideoIODevice;
|
|
|
|
std::unique_ptr<VideoIODevice> CreateVideoIODevice(VideoIOBackendId backendId, std::string& error);
|