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

  1. /* Copyright (c) IBM Corp. 1992 */
  2. #ifndef _ITREE_H
  3. #define _ITREE_H
  4.  
  5. #include <itbtre.h>
  6.  
  7. template < class Element, class ElementOps, INumber numberOfChildren >
  8. class IGTree : public IGTabularTree < Element, ElementOps, numberOfChildren > {
  9. };
  10.  
  11. template < class Element, INumber numberOfChildren >
  12. class ITree : public ITabularTree < Element, numberOfChildren > {
  13. };
  14.  
  15. #endif
  16.