mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
702 B
27 lines
702 B
//==========================================================================;
|
|
//
|
|
// 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
|