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.
28 lines
741 B
28 lines
741 B
//==========================================================================;
|
|
//
|
|
// XDSimpl.h : additional infrastructure to support implementing IMSVidXDS
|
|
// nicely from c++
|
|
// Copyright (c) Microsoft Corporation 1999.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#pragma once
|
|
|
|
#ifndef XDSIMPL_H
|
|
#define XDSIMPL_H
|
|
|
|
#include "featureimpl.h"
|
|
|
|
namespace MSVideoControl {
|
|
|
|
template<class T, LPCGUID LibID, LPCGUID KSCategory, class MostDerivedInterface = IMSVidXDS>
|
|
class DECLSPEC_NOVTABLE IMSVidXDSImpl : public IMSVidFeatureImpl<T, LibID, KSCategory, MostDerivedInterface> {
|
|
public:
|
|
virtual ~IMSVidXDSImpl() {}
|
|
};
|
|
|
|
}; /// namespace
|
|
|
|
#endif
|
|
// end of file - XDSimpl.h
|