home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) IBM Corp. 1992 */
- #ifndef _ITREE_H
- #define _ITREE_H
-
- #include <itbtre.h>
-
- template < class Element, class ElementOps, INumber numberOfChildren >
- class IGTree : public IGTabularTree < Element, ElementOps, numberOfChildren > {
- };
-
- template < class Element, INumber numberOfChildren >
- class ITree : public ITabularTree < Element, numberOfChildren > {
- };
-
- #endif