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
737 B
27 lines
737 B
//==========================================================================;
|
|
//
|
|
// featureimpl.h : additional infrastructure to support implementing IMSVidFeatureDevice
|
|
// nicely from c++
|
|
// Copyright (c) Microsoft Corporation 2000.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#pragma once
|
|
|
|
#ifndef FEATUREIMPL_H
|
|
#define FEATUREIMPL_H
|
|
|
|
#include "devimpl.h"
|
|
|
|
namespace MSVideoControl {
|
|
|
|
template<class T, LPCGUID LibID, LPCGUID Category, class MostDerivedInterface = IMSVidFeatureDevice>
|
|
class DECLSPEC_NOVTABLE IMSVidFeatureImpl : public IMSVidDeviceImpl<T, LibID, Category, MostDerivedInterface> {
|
|
public:
|
|
};
|
|
|
|
}; // namespace
|
|
|
|
#endif
|
|
// end of file - featureimpl.h
|