mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-18 18:42:40 +00:00
12 lines
206 B
C++
12 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();
|
|
};
|