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

  1. /*    ==================
  2.  *    PedChoreGeneric.cc
  3.  *    ==================
  4.  */
  5.  
  6. #include "PedChoreGeneric.hh"
  7.  
  8. PedChoreGeneric::PedChoreGeneric(GenericChoreFunc inFunc, void *inParam)
  9. : mFunc(inFunc), mParam(inParam)
  10. {
  11.     
  12. }
  13.  
  14. void
  15. PedChoreGeneric::Perform()
  16. {
  17.     (*mFunc)(mParam);
  18. }
  19.