home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / MACtive Desktop / Source / Sources / FileMenu.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-30  |  244 b   |  32 lines  |  [TEXT/CWIE]

  1. #include "BaseWindow.h"
  2. #include "FileMenu.h"
  3.  
  4.  
  5.  
  6.  
  7.  
  8. extern Boolean                gExitFlag;
  9.  
  10.  
  11.  
  12.  
  13.  
  14. FileMenu::FileMenu(void) : BaseMenu(257)
  15. {
  16.     
  17. }
  18.  
  19.  
  20.  
  21.  
  22.  
  23. void FileMenu::HandleSelect(UInt32 item)
  24. {
  25.     switch(item)
  26.     {
  27.         default:
  28.             gExitFlag = true;
  29.             break;
  30.     }
  31. }
  32.