home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) IBM Corp. 1992 */
- #ifndef _IKSSET_H
- #define _IKSSET_H
-
- #include <iavlkss.h>
-
- template < class Element, class Key, class ElementOps >
- class IGKeySortedSet : public IGAvlKeySortedSet < Element, Key, ElementOps > {
- public:
- IGKeySortedSet (INumber n = 100, IBoundIndicator b = IUnbounded) :
- IGAvlKeySortedSet < Element, Key, ElementOps > (n, b) {}
- };
-
- template < class Element, class Key >
- class IKeySortedSet : public IAvlKeySortedSet < Element, Key > {
- public:
- IKeySortedSet (INumber n = 100, IBoundIndicator b = IUnbounded) :
- IAvlKeySortedSet < Element, Key > (n, b) {}
- };
-
- #endif