home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / thrd1.zip / iuserhdr.hpp < prev    next >
Text File  |  1994-02-16  |  391b  |  28 lines

  1. #ifndef _IUSERHDR_
  2.   #define _IUSERHDR_
  3.  
  4. #include <ihandler.hpp>
  5. #include <ievent.hpp>
  6.  
  7. #pragma pack(4)
  8.  
  9. class IEvent;
  10.  
  11. class IUserHandler : public IHandler {
  12. public:
  13.   IUserHandler   ( );
  14. virtual
  15.  ~IUserHandler   ( );
  16.  
  17. Boolean
  18.   dispatchHandlerEvent ( IEvent& event );
  19.  
  20. protected:
  21. virtual Boolean
  22.   user         ( IEvent& event ) = 0;
  23. };
  24.  
  25. #pragma pack()
  26.  
  27. #endif
  28.