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

  1. #ifndef _IOBJWIN_
  2. #define _IOBJWIN_
  3. /*******************************************************************************
  4. * FILE NAME: iobjwin.hpp                                                       *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     IObjectWindow                                                            *
  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 <iwindow.hpp>
  19.  
  20. class IObjectWindowData;
  21.  
  22. #pragma pack(4)
  23.  
  24. class IObjectWindow : public IWindow {
  25. typedef IWindow
  26.   Inherited;
  27. public:
  28. /*------------------------------- Constructors -------------------------------*/
  29.   IObjectWindow ( );
  30. virtual
  31.  ~IObjectWindow ( );
  32.  
  33. /*--------------------------------- Closing ----------------------------------*/
  34. IObjectWindow
  35.  &close ( );
  36.  
  37. private:
  38. /*------------------------------ Hidden Members ------------------------------*/
  39.   IObjectWindow ( const IObjectWindow& window );
  40. IObjectWindow
  41.  &operator=     ( const IObjectWindow& window );
  42.  
  43. /*--------------------------------- Private ----------------------------------*/
  44. IObjectWindowData
  45.  *fObjectWindowData;
  46. }; // IObjectWindow
  47.  
  48. #pragma pack()
  49.  
  50. #endif /* _IOBJWIN_ */
  51.