SourceObj.h
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:2k
源码类别:

DNA

开发平台:

Visual C++

  1. #if !defined(AFX_SOURCEOBJ_H__B77C2985_56DD_11CF_B355_00104B08CC22__INCLUDED_)
  2. #define AFX_SOURCEOBJ_H__B77C2985_56DD_11CF_B355_00104B08CC22__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SourceObj.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSourceObj command target
  10. class CSourceObj : public CCmdTarget
  11. {
  12. DECLARE_DYNCREATE(CSourceObj)
  13. CSourceObj();           // protected constructor used by dynamic creation
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CSourceObj)
  21. public:
  22. virtual void OnFinalRelease();
  23. //}}AFX_VIRTUAL
  24. DECLARE_MESSAGE_MAP()
  25. // Implementation
  26. protected:
  27. virtual ~CSourceObj();
  28. // Generated message map functions
  29. //{{AFX_MSG(CSourceObj)
  30. // NOTE - the ClassWizard will add and remove member functions here.
  31. //}}AFX_MSG
  32. DECLARE_OLECREATE(CSourceObj)    // Class factory and guid
  33. DECLARE_INTERFACE_MAP()
  34. // Connection point for interface IEventSet
  35. BEGIN_CONNECTION_PART(CSourceObj, EventSetConnPt)
  36. virtual REFIID GetIID();
  37. END_CONNECTION_PART(EventSetConnPt)
  38. // Generated OLE dispatch map functions
  39. //{{AFX_DISPATCH(CSourceObj)
  40. afx_msg long GetMyProperty();
  41. afx_msg void SetMyProperty(long nNewValue);
  42. //}}AFX_DISPATCH
  43. DECLARE_DISPATCH_MAP()
  44. DECLARE_CONNECTION_MAP()
  45. // event handler
  46. void FirePropChanged (long nInt);
  47. private:
  48. long mProperty;
  49. };
  50. /////////////////////////////////////////////////////////////////////////////
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_SOURCEOBJ_H__B77C2985_56DD_11CF_B355_00104B08CC22__INCLUDED_)