home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / advanced / chatter / setupdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.2 KB  |  47 lines

  1. // setupdlg.h : header file
  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.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CSetupDlg dialog
  15.  
  16. class CSetupDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CSetupDlg(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CSetupDlg)
  24.     enum { IDD = IDD_SETUP };
  25.     int     m_nChannel;
  26.     CString m_strHandle;
  27.     CString m_strServer;
  28.     //}}AFX_DATA
  29.  
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CSetupDlg)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CSetupDlg)
  43.         // NOTE: the ClassWizard will add member functions here
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.