home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / keysrt.zip / imykysrt.h < prev    next >
Text File  |  1996-02-09  |  489b  |  28 lines

  1. #ifndef _IMYKYSRT_
  2. #define _IMYKYSRT_
  3.  
  4. #include <ivksset.h>
  5.  
  6. #ifndef _ISTRING_
  7.   #include <istring.hpp>
  8. #endif
  9.  
  10.  
  11.  
  12. template < class Element >
  13. class IMyKeySortedSet : public IVKeySortedSet< Element, IString >
  14. {
  15. public:
  16.  
  17. // typedef IMyKeySortedSetOnBaseCursor < Element > Cursor;
  18. //  typedef IVKeySortedSetOnBaseCursor < Element, IString > Cursor;
  19.  
  20.         IMyKeySortedSet(INumber n = 100)
  21.            : IVKeySortedSet <Element, IString > (n)
  22.    {   }
  23.  
  24. };
  25.  
  26. #endif
  27.  
  28.