windows-nt/Source/XPSP1/NT/multimedia/dshow/vidctl/inputimpl.h
2020-09-26 16:20:57 +08:00

28 lines
702 B
C++

//==========================================================================;
//
// inputimpl.h : additional infrastructure to support implementing IMSVidInputDevice
// nicely from c++
// Copyright (c) Microsoft Corporation 1999.
//
/////////////////////////////////////////////////////////////////////////////
#pragma once
#ifndef INPUTIMPL_H
#define INPUTIMPL_H
#include "devimpl.h"
namespace MSVideoControl {
template<class T, LPCGUID LibID, LPCGUID Category, class MostDerivedInterface = IMSVidInputDevice>
class DECLSPEC_NOVTABLE IMSVidInputDeviceImpl : public IMSVidDeviceImpl<T, LibID, Category, MostDerivedInterface> {
public:
};
}; // namespace
#endif
// end of file - inputimpl.h