home *** CD-ROM | disk | FTP | other *** search
- /*
-
- NODDLGS.H
-
-
- AboutBox - this dialog places the common box on the
- screen
- */
-
- #ifndef __NODDLGS_H
- #define __NODDLGS_H
-
- #ifndef __WINDOWS_H
- #include <Windows.h>
- #endif
-
- #ifndef __CLASSWIN_H
- #include "ClassWin.h"
- #endif
-
-
- /*---------------------------------------------------------------------
-
- class AboutBox
-
- draws and manages the About dialog.
- */
-
- class AboutBox : public ModalDialog
- {
- public:
-
- AboutBox( HWND );
-
- private:
-
- virtual LPSTR getDialogName();
- virtual BOOL dispatch( HWND, WORD, WORD, LONG );
-
- };
-
-
- inline AboutBox::AboutBox(HWND hOwner) : ModalDialog(hOwner)
- {
- }
-
-
- #endif
-
-