home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / IBMCLASS / IAEQKSRT.H < prev    next >
Text File  |  1993-09-22  |  1KB  |  31 lines

  1. /*******************************************************************************
  2. *                                                                              *
  3. * COPYRIGHT:                                                                   *
  4. *   IBM C/C++ Tools Version 2.01 - Collection Class Library                    *
  5. *   Licensed Materials - Property of IBM                                       *
  6. *   (C) Copyright IBM Corporation 1992, 1993                                   *
  7. *   All Rights Reserved                                                        *
  8. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  9. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  10. *                                                                              *
  11. *******************************************************************************/
  12. #ifndef _IAEQKSRT_H
  13. #define _IAEQKSRT_H
  14.  
  15. #include <iglobals.h>
  16. #include <icursor.h>
  17. #include <iaeqkey.h>
  18. #include <iaeqsrt.h>
  19. #include <iaksrt.h>
  20.  
  21. template < class Element, class Key >
  22. class IAEqualityKeySortedCollection :
  23.   public virtual IAEqualityKeyCollection < Element, Key >,
  24.   public virtual IAEqualitySortedCollection < Element >,
  25.   public virtual IAKeySortedCollection < Element, Key > {
  26. public:
  27.  
  28. };
  29.  
  30. #endif
  31.