DRIVER.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // Driver.h : Declaration of the CDriver
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1996-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Active Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Active Template Library product.
  12. #include "mdrivres.h"       // main symbols
  13. #include <afxtempl.h>
  14. /////////////////////////////////////////////////////////////////////////////
  15. // Drive
  16. struct foo
  17. {
  18. foo() {nPos = 0;nDir=1;}
  19. int nPos;
  20. int nDir;
  21. };
  22. class CDriver :
  23. public IDispatchImpl<IRandomEvent, &IID_IRandomEvent, &LIBID_CONNECTLib>,
  24. public CComObjectRoot
  25. {
  26. public:
  27. CDriver() {}
  28. BEGIN_COM_MAP(CDriver)
  29. COM_INTERFACE_ENTRY(IDispatch)
  30. COM_INTERFACE_ENTRY(IRandomEvent)
  31. END_COM_MAP()
  32. // IRandomEvent
  33. STDMETHOD(Fire)(long l);
  34. int m_nID;
  35. CMap<long, long, foo, foo> m_mapPos;
  36. _ThreadModel::AutoCriticalSection m_cs;
  37. public:
  38. };