home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / isetbnhd.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  1.7 KB  |  36 lines

  1. #ifndef _ISETBNHD_
  2.   #define _ISETBNHD_
  3. /*******************************************************************************
  4. * FILE NAME: isetbnhd.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     ISettingButtonNotifyHandler                                              *
  9. *                                                                              *
  10. * COPYRIGHT:                                                                   *
  11. *   IBM Open Class Library                                                     *
  12. *   (C) Copyright International Business Machines Corporation 1992, 1996       *
  13. *   Licensed Material - Program-Property of IBM - All Rights Reserved.         *
  14. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  15. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  16. *                                                                              *
  17. *******************************************************************************/
  18. #include <ibtnnhdr.hpp>
  19.  
  20. class ISettingButtonNotifyHandler : public IButtonNotifyHandler
  21. {
  22. typedef IButtonNotifyHandler
  23.   Inherited;
  24. public:
  25. /*----------------------------- Constructors ---------------------------------*/
  26.   ISettingButtonNotifyHandler();
  27. virtual
  28.   ~ISettingButtonNotifyHandler();
  29.  
  30. protected:
  31. /*---------------------------- Event Processing ------------------------------*/
  32. virtual Boolean
  33.   dispatchHandlerEvent ( IEvent& anEvent );
  34. };
  35. #endif /* _ISETBNHD_ */
  36.