#ifndef BBOXTREE_HH #define BBOXTREE_HH #include using namespace std; template class bboxtree { struct node { T lower, upper; bboxtree* branch; }; vector bs; }; template class bboxtree { // empty }; #endif // #ifndef BBOXTREE_HH