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

Windows编程

开发平台:

Visual C++

  1. // ObjOne.h : header file
  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. /////////////////////////////////////////////////////////////////////////////
  13. // CObjectOne command target
  14. class CObjectOne : public CCmdTarget
  15. {
  16. DECLARE_DYNCREATE(CObjectOne)
  17. CObjectOne();           // protected constructor used by dynamic creation
  18. // Attributes
  19. public:
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CObjectOne)
  25. public:
  26. virtual void OnFinalRelease();
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. virtual ~CObjectOne();
  31. // Generated message map functions
  32. //{{AFX_MSG(CObjectOne)
  33. // NOTE - the ClassWizard will add and remove member functions here.
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. DECLARE_OLECREATE(CObjectOne)
  37. // Generated OLE dispatch map functions
  38. //{{AFX_DISPATCH(CObjectOne)
  39. afx_msg BSTR SayHello();
  40. //}}AFX_DISPATCH
  41. DECLARE_DISPATCH_MAP()
  42. DECLARE_INTERFACE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////