mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-14 07:27:11 +00:00
11 lines
206 B
C++
11 lines
206 B
C++
#pragma once
|
|
|
|
#include "renderer.h"
|
|
|
|
// A factory is required to avoid pulling in
|
|
// incompatible Objective-C headers.
|
|
class VTRendererFactory {
|
|
public:
|
|
static
|
|
IFFmpegRenderer* createRenderer();
|
|
};
|