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

  1. // SubDialog.h
  2. #ifndef _SUBDIALOG_
  3. #define _SUBDIALOG_
  4.  
  5. class CBrkPnts;
  6.  
  7. class CSubDialog : public CDialog
  8. {
  9. public:
  10.     CBrkPnts * m_pbrksmgr;
  11.     CSubDialog(UINT idTemplate, CWnd *pParent): CDialog(idTemplate, pParent) {}
  12.     virtual BOOL Create(CWnd *pParent) PURE;
  13. };
  14.  
  15. #endif