home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch11 / myradio / mydlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-22  |  610 b   |  30 lines

  1. // mydlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMyDlg dialog
  6.  
  7. class CMyDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CMyDlg(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CMyDlg)
  15.     enum { IDD = IDD_DIALOG1 };
  16.     int        m_BeepStatus;
  17.     int        m_VoiceStatus;
  18.     //}}AFX_DATA
  19.  
  20. // Implementation
  21. protected:
  22.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  23.  
  24.     // Generated message map functions
  25.     //{{AFX_MSG(CMyDlg)
  26.     afx_msg void OnDefault();
  27.     //}}AFX_MSG
  28.     DECLARE_MESSAGE_MAP()
  29. };
  30.