home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / kwclass.zip / KSLDHDR.HPP < prev    next >
C/C++ Source or Header  |  1994-04-18  |  345b  |  19 lines

  1. #ifndef _KSLDHDR_
  2. #define _KSLDHDR_
  3.  
  4. #ifndef _IHANDLER_
  5.   #include <ihandler.hpp>
  6. #endif
  7.  
  8. class IEvent;
  9. class IControlEvent;
  10.  
  11. class _Export KSliderHandler : public IHandler
  12. {
  13.    protected:
  14.       virtual Boolean dispatchHandlerEvent(IEvent& event);
  15.       virtual Boolean armTracked(IControlEvent&)  { return false; }
  16. };
  17.  
  18. #endif
  19.