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.

28 lines
814 B

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