//  File: main4.C
//
//  Testing the BSTree class.

#include <stdio.h>
#include <stdlib.h>
#include "bstree.h"

main() {
   BSTree *Tptr, *temp ;
   BSTreeNode Node, *Nptr ;

   Nptr = new BSTreeNode ;

   Tptr = new BSTree ;
   delete Tptr ;
}
