home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Sources / Commands / PedCommandQuit.cc < prev   
Encoding:
C/C++ Source or Header  |  2000-06-24  |  265 b   |  17 lines

  1. /*    =================
  2.  *    PedCommandQuit.cc
  3.  *    =================
  4.  */
  5.  
  6. #include "PedestalDebugging.h"
  7.  
  8. #include "PedCommandQuit.hh"
  9. #include "PedApplication.hh"
  10.  
  11. void
  12. PedCommandQuit::Execute()
  13. {
  14.     // FIXME:  Send a real Apple event to myself
  15.     mApp.NotifyQuitEvent();
  16. }
  17.