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

DNA

开发平台:

Visual C++

  1. // calcdriv.h : main header file for the CALCDRIV application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #ifndef __AFXWIN_H__
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include "resource.h"       // main symbols
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CCalcDrivApp:
  18. // See calcdriv.cpp for the implementation of this class
  19. class CCalcDrivApp : public CWinApp
  20. {
  21. public:
  22. CCalcDrivApp();
  23. // Overrides
  24. virtual BOOL InitInstance();
  25. // Implementation
  26. //{{AFX_MSG(CCalcDrivApp)
  27. // NOTE - the ClassWizard will add and remove member functions here.
  28. //    DO NOT EDIT what you see in these blocks of generated code !
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CDriverDlg dialog
  34. // Include the type-safe class generated from ClassWizard's "Read Type Library"
  35. //  button to interface with the IDispatch enabled calculator object.
  36. #include "calctype.h"
  37. class CDriverDlg : public CDialog
  38. {
  39. // Construction
  40. public:
  41. CDriverDlg(CWnd* pParent = NULL);   // standard constructor
  42. // Dialog Data
  43. //{{AFX_DATA(CDriverDlg)
  44. enum { IDD = IDD_CALCDRIV };
  45. CStatic m_stcOperator;
  46. CStatic m_stcOperand;
  47. CStatic m_stcAccum;
  48. CEdit   m_editExpression;
  49. //}}AFX_DATA
  50. // an instance of the IDispatch enabled calculator
  51. CRemoteCalcDlg m_calc;
  52. // Implementation
  53. public:
  54. virtual ~CDriverDlg();
  55. protected:
  56. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  57. // Generated message map functions
  58. //{{AFX_MSG(CDriverDlg)
  59. afx_msg void OnGo();
  60. afx_msg void OnSingleStep();
  61. virtual BOOL OnInitDialog();
  62. afx_msg void OnRefresh();
  63. //}}AFX_MSG
  64. DECLARE_MESSAGE_MAP()
  65. };