home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1996 September / WIN95_09963.iso / strategy / hangman.zip / HintDlg.h < prev    next >
C/C++ Source or Header  |  1995-12-30  |  803b  |  37 lines

  1. // HintDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CHintDlg dialog
  6.  
  7. class CHintDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     void SetQuote(CString strQuote);
  12.     CHintDlg(CWnd* pParent = NULL);   // standard constructor
  13.  
  14. // Dialog Data
  15.     //{{AFX_DATA(CHintDlg)
  16.     enum { IDD = IDD_HINT_DIALOG };
  17.     CString    m_Quote;
  18.     //}}AFX_DATA
  19.  
  20.  
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CHintDlg)
  24.     protected:
  25.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29. protected:
  30.  
  31.     // Generated message map functions
  32.     //{{AFX_MSG(CHintDlg)
  33.         // NOTE: the ClassWizard will add member functions here
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.