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

  1. #ifndef _IVBCEHDR_
  2. #define _IVBCEHDR_
  3. /*******************************************************************************
  4. * FILE NAME: ivbcehdr.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     IVBCnrEditHandler                                                        *
  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.  
  19. #include <icnrehdr.hpp>
  20. #include <icnreevt.hpp>
  21.  
  22. /*-------------------------- Pragma Library Support --------------------------*/
  23. #ifndef __NO_DEFAULT_LIBS__
  24.   #ifdef __OS2__
  25.     #ifdef __IMPORTLIB__
  26.        #pragma library("CPPOOV3I.LIB")
  27.     #else
  28.        #pragma library("CPPOOV3.LIB")
  29.     #endif
  30.   #endif
  31.   #ifdef __WINDOWS__
  32.     #ifdef __IMPORTLIB__
  33.        #pragma library("CPPWOV3I.LIB")
  34.     #else
  35.        #pragma library("CPPWOV3.LIB")
  36.     #endif
  37.   #endif
  38. #endif
  39.  
  40. #pragma pack(4)
  41. #ifdef IC_PMWIN
  42. #pragma info(nocls)
  43. #endif
  44.  
  45. class IVBCnrEditHandler : public ICnrEditHandler {
  46. typedef IVBCnrEditHandler
  47.    Inherited;
  48.  
  49. public:
  50. /*-------------------------- Constructors ------------------------------------*/
  51.  
  52. /*-------------------------- Event Processing --------------------------------*/
  53. virtual Boolean
  54.   endEdit              ( ICnrEndEditEvent&       event);
  55. };
  56.  
  57. #pragma pack()
  58. #endif
  59.