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

  1. #ifndef _ICTLEVT_
  2.   #define _ICTLEVT_
  3. /*******************************************************************************
  4. * FILE NAME: ictlevt.hpp                                                       *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     IControlEvent                                                            *
  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 <ievent.hpp>
  19.  
  20. #pragma pack(4)
  21.  
  22. class IControlEvent : public IEvent {
  23. typedef IEvent
  24.   Inherited;
  25. public:
  26. /*------------------------------- Constructors -------------------------------*/
  27.   IControlEvent ( const IEvent&        event );
  28.   IControlEvent ( const IControlEvent& event );
  29.  
  30. virtual
  31.  ~IControlEvent ( );
  32.  
  33. /*--------------------------- Control Information ----------------------------*/
  34. virtual unsigned long
  35.   controlId     ( ) const;
  36.  
  37. };  // IControlEvent
  38.  
  39. #pragma pack()
  40.  
  41. #endif /* _ICTLEVT_ */
  42.