Leaked source code of windows server 2003
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

  1. //==========================================================================;
  2. //
  3. // featureimpl.h : additional infrastructure to support implementing IMSVidFeatureDevice
  4. // nicely from c++
  5. // Copyright (c) Microsoft Corporation 2000.
  6. //
  7. /////////////////////////////////////////////////////////////////////////////
  8. #pragma once
  9. #ifndef FEATUREIMPL_H
  10. #define FEATUREIMPL_H
  11. #include "devimpl.h"
  12. namespace MSVideoControl {
  13. template<class T, LPCGUID LibID, LPCGUID Category, class MostDerivedInterface = IMSVidFeatureDevice>
  14. class DECLSPEC_NOVTABLE IMSVidFeatureImpl : public IMSVidDeviceImpl<T, LibID, Category, MostDerivedInterface> {
  15. public:
  16. };
  17. }; // namespace
  18. #endif
  19. // end of file - featureimpl.h