home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-11 | 920 b | 35 lines | [TEXT/CWIE] |
- // ===========================================================================
- // <PP Starter Header>.h ©1994-1995 Metrowerks Inc. All rights reserved.
- // ===========================================================================
-
- #pragma once
-
- #include <LApplication.h>
-
- #include "LG_Constants.h"
-
- class CLGCommander;
-
- class LGApp : public LApplication {
- public:
- LGApp(); // constructor registers all PPobs
- virtual ~LGApp(); // stub destructor
-
- // this overriding function performs application functions
-
- virtual Boolean ObeyCommand(CommandT inCommand, void* ioParam);
-
- // this overriding function returns the status of menu items
-
- virtual void FindCommandStatus(CommandT inCommand,
- Boolean &outEnabled, Boolean &outUsesMark,
- Char16 &outMark, Str255 outName);
-
- //-------------
- CLGCommander *mCmdr;
-
-
- protected:
-
- virtual void StartUp(); // overriding startup functions
- };