home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / SeeMovieRun 1.0 / headers / CEBCollaborator.h next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  570 b   |  29 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CEBCollaborator.h
  3.  
  4.         Interface for EBCollaborator class - the Event Broadcaster.
  5.         
  6.     SUPERCLASS = CCollaborator
  7.     
  8.     Copyright © 1992 Joe Zobkiw. All rights reserved.
  9.     
  10.  ******************************************************************************/
  11.  
  12. #define _H_CEBCollaborator
  13.  
  14. //
  15. // reasons
  16. //
  17.  
  18. #define kEventRecordReason    1    
  19.  
  20.  
  21. #include "CCollaborator.h"
  22.  
  23. class CEBCollaborator : public CCollaborator
  24. {
  25.  
  26. public:    
  27.     void IEBCollaborator (void);
  28.     void BroadcastEvent(EventRecord *macEvent);
  29. };