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

  1. #ifndef _ICOLLVWI_
  2.   #define _ICOLLVWI_
  3. /*******************************************************************************
  4. * FILE NAME: icollvwi.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     ICollectionViewConstants                                                 *
  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.  
  20. #include <ibase.hpp>
  21.  
  22.  
  23. class ICollectionViewConstants : public IBase {
  24.  
  25. typedef IBase
  26.   Inherited;
  27.  
  28. public:
  29.  
  30. /*------------------------ Template Implementation ---------------------------*/
  31. static const unsigned long
  32.   IC_IMPORTU listError,
  33.   IC_IMPORTU listNone,
  34.   IC_IMPORTU listMemoryError,
  35.   IC_IMPORTU listEnd,
  36.   IC_IMPORTU listInsert,
  37.   IC_IMPORTU listDelete,
  38.   IC_IMPORTU listDeleteAll;
  39. static const unsigned long
  40.   IC_IMPORTU comboInsert,
  41.   IC_IMPORTU comboDelete,
  42.   IC_IMPORTU comboDeleteAll;
  43.  
  44. private:
  45. /*------------------------ Hidden Members ------------------------------------*/
  46.   ICollectionViewConstants ( );
  47.   ICollectionViewConstants ( const ICollectionViewConstants& object );
  48. ICollectionViewConstants
  49.  &operator=                ( const ICollectionViewConstants& object );
  50.  
  51. };
  52.  
  53.  
  54. #endif  /*  _ICOLLVWI_  */
  55.