home *** CD-ROM | disk | FTP | other *** search
- #ifndef _ISIZEEVT_
- #define _ISIZEEVT_
- /*******************************************************************************
- * FILE NAME: isizeevt.hpp *
- * *
- * DESCRIPTION: *
- * Declaration of the classes: *
- * IResizeEvent *
- * *
- * 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 <ievent.hpp>
-
- class ISize;
-
- #pragma pack(4)
-
- class IResizeEvent : public IEvent {
- typedef IEvent
- Inherited;
-
- public:
- /*---------------------------- Constructors ----------------------------------*/
- IResizeEvent ( const IEvent& event );
- virtual
- ~IResizeEvent ( );
-
- /*----------------------------- Size Information -----------------------------*/
- ISize
- oldSize ( ) const,
- newSize ( ) const;
- }; // IResizeEvent
-
- #pragma pack()
-
- #endif /* _ISIZEEVT_ */
-