home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLBackgrounder.h < prev    next >
Encoding:
Text File  |  1997-05-25  |  301 b   |  22 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __BACKGROUNDER_H
  5. #define __BACKGROUNDER_H
  6.  
  7. #include "CLEvent.h"
  8.  
  9. class TBackgroundEvent:
  10.     public TEvent
  11. {
  12. public:
  13.     bool background;
  14. };
  15.  
  16. class MBackgrounder
  17. {
  18. public:
  19.     virtual void HandleBackground( const TBackgroundEvent* )=0;
  20. };
  21.  
  22. #endif