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

  1. #ifndef _INOTEBNH_
  2.   #define _INOTEBNH_
  3. /*******************************************************************************
  4. * FILE NAME: inotebnh.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     INotebookNotifyHandler                                                   *
  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 <iwinnhdr.hpp>
  19.  
  20. #pragma pack(4)
  21.  
  22. class INotebookNotifyHandler : public IWindowNotifyHandler {
  23. typedef IWindowNotifyHandler
  24.   Inherited;
  25. public:
  26. /*----------------------------- Constructors ---------------------------------*/
  27.   INotebookNotifyHandler();
  28. virtual
  29.   ~INotebookNotifyHandler();
  30.  
  31. protected:
  32. /*---------------------------- Event Dispatching -----------------------------*/
  33. virtual Boolean
  34.   dispatchHandlerEvent (IEvent& anEvent);
  35. };
  36.  
  37. #pragma pack()
  38.  
  39. #endif /* _INOTEBNH_ */
  40.