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

  1. /**********************************************************************
  2. *                                                                     *
  3. *  IBM(R) VisualAge(TM) for C++ for Windows(R), Version 3.5           *
  4. *                                                                     *
  5. *  PID: 5622-880                                                      *
  6. *  - Licensed Material - Program-Property of IBM                      *
  7. *  (C) Copyright IBM Corp. 1991, 1995 - All Right Reserved.           *
  8. *                                                                     *
  9. *  US Government Users Restricted Rights - Use, duplication or        *
  10. *  disclosure restricted by GSA ADP Schedule Contract with IBM Corp.  *
  11. *                                                                     *
  12. *  VisualAge, and IBM are trademarks or registered trademarks of      *
  13. *  International Business Machines Corporation.                       *
  14. *  Windows is a registered trademark of Microsoft Corporation.        *
  15. *                                                                     *
  16. **********************************************************************/
  17.  
  18. #ifndef _IAEQKEY_H
  19. #define _IAEQKEY_H
  20.  
  21. #include <iaequal.h>
  22. #include <iakey.h>
  23.  
  24. #pragma info (nocls, nocnd, nocns, nocnv, noext, nognr, novft)
  25. #pragma pack (4)
  26.  
  27. #pragma SOMAsDefault (off)
  28.  
  29. template <class Element, class Key>
  30. class IAEqualityKeyCollection :
  31.   public IAEqualityCollection <Element>,
  32.   public IAKeyCollection <Element, Key> {
  33.  
  34.   typedef  IACollectionImpl Implementation;
  35.  
  36. public:
  37.  
  38.            IAEqualityKeyCollection
  39.                             (INotifier&);
  40.  
  41.           ~IAEqualityKeyCollection
  42.                             ();
  43.  
  44. protected:
  45.  
  46.            IAEqualityKeyCollection
  47.                             ();
  48.  
  49.            IAEqualityKeyCollection
  50.                             (IAEqualityKeyCollection
  51.                               <Element, Key> const&);
  52.  
  53. private:
  54.  
  55.  
  56. };
  57.  
  58. #pragma SOMAsDefault (pop)
  59.  
  60. #include <iaeqkey.inl>
  61.  
  62. #pragma info (restore)
  63. #pragma pack ()
  64.  
  65. #endif
  66.