home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / addins / brkpntmgr / dlgadvanced.h < prev    next >
C/C++ Source or Header  |  1998-04-02  |  1KB  |  51 lines

  1. #if !defined(AFX_DLGADVANCED_H__A2CB0963_922F_11D1_8305_00A0C91BC942__INCLUDED_)
  2. #define AFX_DLGADVANCED_H__A2CB0963_922F_11D1_8305_00A0C91BC942__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // DlgAdvanced.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDlgAdvanced dialog
  12. class CBrkPnts;
  13.  
  14.  
  15. class CDlgAdvanced : public CDialog
  16. {
  17. // Construction
  18. public:
  19.     CDlgAdvanced(CWnd* pParent = NULL);   // standard constructor
  20.     void SetBrkPnts(CBrkPnts *pBrkPnts) {m_pBrkPnts = pBrkPnts;}
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CDlgAdvanced)
  24.     enum { IDD = IDD_DIALOGADVANCED };
  25.         // NOTE: the ClassWizard will add data members here
  26.     //}}AFX_DATA
  27.  
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CDlgAdvanced)
  32.     protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.     CBrkPnts * m_pBrkPnts;
  39.  
  40.     // Generated message map functions
  41.     //{{AFX_MSG(CDlgAdvanced)
  42.         // NOTE: the ClassWizard will add member functions here
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49.  
  50. #endif // !defined(AFX_DLGADVANCED_H__A2CB0963_922F_11D1_8305_00A0C91BC942__INCLUDED_)
  51.