home *** CD-ROM | disk | FTP | other *** search
- #ifndef _IWINNHDR_
- #define _IWINNHDR_
- /*******************************************************************************
- * FILE NAME: iwinnhdr.hpp *
- * *
- * DESCRIPTION: *
- * Declaration of the class: *
- * IWindowNotifyHandler *
- * *
- * COPYRIGHT: *
- * IBM Open Class Library *
- * (C) Copyright International Business Machines Corporation 1992, 1996 *
- * Licensed Material - Program-Property of IBM - All Rights Reserved. *
- * US Government Users Restricted Rights - Use, duplication, or disclosure *
- * restricted by GSA ADP Schedule Contract with IBM Corp. *
- * *
- *******************************************************************************/
- #include <ihandler.hpp>
-
- #pragma pack(4)
-
- class IWindowNotifyHandler : public IHandler {
- typedef IHandler
- Inherited;
- public:
- /*------------------------------- Constructors -------------------------------*/
- IWindowNotifyHandler ( );
- virtual
- ~IWindowNotifyHandler ( );
-
- protected:
- /*---------------------------- Event Dispatching -----------------------------*/
- virtual Boolean
- dispatchHandlerEvent ( IEvent& event );
- friend class IWindow;
- }; // IWindowNotifyHandler
-
- #pragma pack()
-
- #endif /* _IWINNHDR_ */
-