LookingGlass/host/CaptureFactory.h

15 lines
189 B
C
Raw Normal View History

#pragma once
#define W32_LEAN_AND_MEAN
#include <Windows.h>
#include "ICapture.h"
static class CaptureFactory
{
public:
static ICapture * GetCaptureDevice()
{
return NULL;
}
};