home *** CD-ROM | disk | FTP | other *** search
- #ifndef _IOBJWIN_
- #define _IOBJWIN_
- /*******************************************************************************
- * FILE NAME: iobjwin.hpp *
- * *
- * DESCRIPTION: *
- * Declaration of the classes: *
- * IObjectWindow *
- * *
- * 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 <iwindow.hpp>
-
- class IObjectWindowData;
-
- #pragma pack(4)
-
- class IObjectWindow : public IWindow {
- typedef IWindow
- Inherited;
- public:
- /*------------------------------- Constructors -------------------------------*/
- IObjectWindow ( );
- virtual
- ~IObjectWindow ( );
-
- /*--------------------------------- Closing ----------------------------------*/
- IObjectWindow
- &close ( );
-
- private:
- /*------------------------------ Hidden Members ------------------------------*/
- IObjectWindow ( const IObjectWindow& window );
- IObjectWindow
- &operator= ( const IObjectWindow& window );
-
- /*--------------------------------- Private ----------------------------------*/
- IObjectWindowData
- *fObjectWindowData;
- }; // IObjectWindow
-
- #pragma pack()
-
- #endif /* _IOBJWIN_ */
-