home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / iaeqksrt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  2.1 KB  |  68 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 _IAEQKSRT_H
  19. #define _IAEQKSRT_H
  20.  
  21. #include <iaequal.h>
  22. #include <iakey.h>
  23. #include <iasrt.h>
  24.  
  25. #pragma info (nocls, nocnd, nocns, nocnv, noext, nognr, novft)
  26. #pragma pack (4)
  27.  
  28. #pragma SOMAsDefault (off)
  29.  
  30. template <class Element, class Key>
  31. class IAEqualityKeySortedCollection :
  32.   public IAEqualityCollection <Element>,
  33.   public IAKeyCollection <Element, Key>,
  34.   public IASortedCollection <Element> {
  35.  
  36.   typedef  IACollectionImpl Implementation;
  37.  
  38. public:
  39.  
  40.            IAEqualityKeySortedCollection
  41.                             (INotifier&);
  42.  
  43.           ~IAEqualityKeySortedCollection
  44.                             ();
  45.  
  46. protected:
  47.  
  48.            IAEqualityKeySortedCollection
  49.                             ();
  50.  
  51.            IAEqualityKeySortedCollection
  52.                             (IAEqualityKeySortedCollection
  53.                               <Element, Key> const&);
  54.  
  55. private:
  56.  
  57.  
  58. };
  59.    
  60. #pragma SOMAsDefault (pop)
  61.  
  62. #include <iaeqksrt.inl>
  63.  
  64. #pragma info (restore)
  65. #pragma pack ()
  66.  
  67. #endif
  68.