home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional Developers Kit 1992 November / Disc01 / Disc01.mdf / cppbeta / bbxxk / iksset.h__ / IKSSET.H
Encoding:
C/C++ Source or Header  |  1992-10-26  |  631 b   |  22 lines

  1. /* Copyright (c) IBM Corp. 1992 */
  2. #ifndef _IKSSET_H
  3. #define _IKSSET_H
  4.  
  5. #include <iavlkss.h>
  6.  
  7. template < class Element, class Key, class ElementOps >
  8. class IGKeySortedSet : public IGAvlKeySortedSet < Element, Key, ElementOps > {
  9. public:
  10.   IGKeySortedSet (INumber n = 100, IBoundIndicator b = IUnbounded) :
  11.     IGAvlKeySortedSet < Element, Key, ElementOps > (n, b) {}
  12. };
  13.  
  14. template < class Element, class Key >
  15. class IKeySortedSet : public IAvlKeySortedSet < Element, Key > {
  16. public:
  17.   IKeySortedSet (INumber n = 100, IBoundIndicator b = IUnbounded) :
  18.     IAvlKeySortedSet < Element, Key > (n, b) {}
  19. };
  20.  
  21. #endif
  22.