home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-22 | 776 b | 24 lines | [TEXT/CWIE] |
- // ===========================================================================
- // CToggleRadioButtonApp.h ©1996-1997 John C. Daub. All rights reserved.
- // ===========================================================================
- // See "HToggleRadioButton README" for more information
-
- #pragma once
-
- #include <LApplication.h>
-
-
- class CToggleRadioButtonApp : public LApplication {
- public:
- CToggleRadioButtonApp(); // constructor registers all PPobs
- virtual ~CToggleRadioButtonApp(); // stub destructor
-
- virtual Boolean ObeyCommand(CommandT inCommand, void* ioParam);
-
- virtual void FindCommandStatus(CommandT inCommand,
- Boolean &outEnabled, Boolean &outUsesMark,
- Char16 &outMark, Str255 outName);
- protected:
-
- virtual void StartUp();
- };