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

  1. #ifndef _ICNRCLST_
  2. #define _ICNRCLST_
  3. /*******************************************************************************
  4. * FILE NAME: icnrclst.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     ICnrControlList                                                          *
  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 <iset.h>
  19.  
  20. #include <icnrctl.hpp>
  21.  
  22. #pragma pack(4)
  23.  
  24. class ICnrControlList : public ISet<IContainerControl*> {
  25.  
  26. public:
  27. /*------------------------------- Constructors -------------------------------*/
  28.   ICnrControlList  ();
  29.   ICnrControlList  (const ICnrControlList&);
  30.  
  31. virtual
  32.  ~ICnrControlList  ();
  33. };
  34.  
  35. #pragma pack()
  36.  
  37. #endif // _ICNRCLST_
  38.