home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Sources / Event Handlers / PedHandlerOpenApp.cc next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  364 b   |  24 lines

  1. /*    ====================
  2.  *    PedHandlerOpenApp.cc
  3.  *    ====================
  4.  */
  5.  
  6. #include "PedestalDebugging.h"
  7.  
  8. #include "PedHandlerOpenApp.hh"
  9.  
  10. #include "AEADescAppleEvent.hh"
  11. #include "PedApplication.hh"
  12.  
  13.  
  14. PedHandlerOpenApp::PedHandlerOpenApp(PedApplication &inApp)
  15. : mApp(inApp)
  16. {
  17. }
  18.  
  19. void
  20. PedHandlerOpenApp::NotifyAppOpenAppEvent()
  21. {
  22.     mApp.NotifyOpenAppEvent();
  23. }
  24.