1 //-------------------------------------------------------------------- 2 // 3 // MenuApp.h 4 // 5 // Written by: Owen Smith 6 // 7 //-------------------------------------------------------------------- 8 9 /* 10 Copyright 1999, Be Incorporated. All Rights Reserved. 11 This file may be used under the terms of the Be Sample Code License. 12 */ 13 14 #ifndef _MenuApp_h 15 #define _MenuApp_h 16 17 #include <Application.h> 18 19 //==================================================================== 20 // CLASS: MenuApp 21 22 class MenuApp : public BApplication 23 { 24 //---------------------------------------------------------------- 25 // Constructors, destructors, operators 26 27 public: 28 MenuApp(); 29 30 //---------------------------------------------------------------- 31 // Virtual function overrides 32 33 public: 34 void AboutRequested(void); 35 void ReadyToRun(void); 36 37 }; 38 39 #endif /* _MenuApp_h */