home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / IBMCLASS / ICNRCLST.HPP < prev    next >
C/C++ Source or Header  |  1993-10-22  |  3KB  |  57 lines

  1. #ifndef _ICNRCLST_
  2. #define _ICNRCLST_
  3. /*******************************************************************************
  4. * FILE NAME: icnrclst.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   This file contains the declaration(s) of the class(es):                    *
  8. *     ICnrControlList                                                          *
  9. *                                                                              *
  10. * COPYRIGHT:                                                                   *
  11. *   Licensed Materials - Property of IBM                                       *
  12. *   (C) Copyright IBM Corporation 1992, 1993                                   *
  13. *   All Rights Reserved                                                        *
  14. *   US Government Users Restricted Rights - Use, duplication, or               *
  15. *   disclosure                                                                 *
  16. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  17. *                                                                              *
  18. *******************************************************************************/
  19. #ifndef _IBASE_
  20.   #include <ibase.hpp>
  21. #endif
  22.  
  23. #include <iset.h>
  24.  
  25. /*----------------------------------------------------------------------------*/
  26. /* Align classes on four byte boundary.                                       */
  27. /*----------------------------------------------------------------------------*/
  28. #pragma pack(4)
  29.  
  30. // forward declarations here
  31. class IContainerControl;
  32.  
  33. class ICnrControlList : public ISet<IContainerControl*>
  34. {
  35. /*******************************************************************************
  36. * The ICnrControlList class defines a collection of IContainerControl          *
  37. * instances.  It should be used by a subclass of IContainerControl in the      *
  38. * implemention of the IContainerControl class.                                 *
  39. *******************************************************************************/
  40. public:
  41. /*------------------------------- Constructor ----------------------------------
  42. | You can construct instances of this class in the following ways:             |
  43. |   - By using the default constructor.                                        |
  44. |   - From an instance of ICnrControlList that already exists.                 |
  45. ------------------------------------------------------------------------------*/
  46.   ICnrControlList  ();
  47.   ICnrControlList  (const ICnrControlList&);
  48.  ~ICnrControlList  ();
  49. };
  50.  
  51. /*----------------------------------------------------------------------------*/
  52. /* Resume compiler default packing.                                           */
  53. /*----------------------------------------------------------------------------*/
  54. #pragma pack()
  55.  
  56. #endif // _ICNRCLST_
  57.