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 >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1998-04-02
|
285 b
|
15 lines
// SubDialog.h
#ifndef _SUBDIALOG_
#define _SUBDIALOG_
class CBrkPnts;
class CSubDialog : public CDialog
{
public:
CBrkPnts * m_pbrksmgr;
CSubDialog(UINT idTemplate, CWnd *pParent): CDialog(idTemplate, pParent) {}
virtual BOOL Create(CWnd *pParent) PURE;
};
#endif