#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__