home *** CD-ROM | disk | FTP | other *** search
- #ifndef _ICTLEVT_
- #define _ICTLEVT_
- /*******************************************************************************
- * FILE NAME: ictlevt.hpp *
- * *
- * DESCRIPTION: *
- * Declaration of the classes: *
- * IControlEvent *
- * *
- * 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>
-
- #pragma pack(4)
-
- class IControlEvent : public IEvent {
- typedef IEvent
- Inherited;
- public:
- /*------------------------------- Constructors -------------------------------*/
- IControlEvent ( const IEvent& event );
- IControlEvent ( const IControlEvent& event );
-
- virtual
- ~IControlEvent ( );
-
- /*--------------------------- Control Information ----------------------------*/
- virtual unsigned long
- controlId ( ) const;
-
- }; // IControlEvent
-
- #pragma pack()
-
- #endif /* _ICTLEVT_ */
-