#ifndef __BINARY_TREE_H #define __BINARY_TREE_H #include #include template class BinaryTree { public: BinaryTree(); ~BinaryTree(); private: BinaryTree *leftNode; BinaryTree *rightNode; T *pData; }; #endif // __BINARY_TREE_H