home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional Developers Kit 1992 November / Disc01 / Disc01.mdf / runnable / ibmc / ibmclass / iaeqksrt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-26  |  476 b   |  22 lines

  1. /* Copyright (c) IBM Corp. 1992 */
  2.  
  3. #ifndef _IAEQKSRT_H
  4. #define _IAEQKSRT_H
  5.  
  6. #include <iglobals.h>
  7. #include <icursor.h>
  8. #include <iaeqkey.h>
  9. #include <iaeqsrt.h>
  10. #include <iaksrt.h>
  11.  
  12. template < class Element, class Key >
  13. class IAEqualityKeySortedCollection :
  14.   public virtual IAEqualityKeyCollection < Element, Key >,
  15.   public virtual IAEqualitySortedCollection < Element >,
  16.   public virtual IAKeySortedCollection < Element, Key > {
  17. public:
  18.  
  19. };
  20.  
  21. #endif
  22.