home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / IBMCLASS / IKSSBST.H < prev    next >
Text File  |  1993-09-22  |  1KB  |  32 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 _IKSSBST_H
  13. #define _IKSSBST_H
  14.  
  15. #include <ibstkss.h>
  16.  
  17. template < class Element, class Key, class ElementOps >
  18. class IGKeySortedSetOnGBSTKeySortedSet : public IGBSTKeySortedSet < Element, Key, ElementOps > {
  19. public:
  20.   IGKeySortedSetOnBSTKeySortedSet (INumber n = 100) :
  21.     IGBSTKeySortedSet < Element, Key, ElementOps > (n) {}
  22. };
  23.  
  24. template < class Element, class Key >
  25. class IKeySortedSetOnBSTKeySortedSet : public IBSTKeySortedSet < Element, Key > {
  26. public:
  27.   IKeySortedSetOnBSTKeySortedSet (INumber n = 100) :
  28.     IBSTKeySortedSet < Element, Key > (n) {}
  29. };
  30.  
  31. #endif
  32.