The base class is called Tree and it has a private function called insert inside it.
The derived class is called BST and it also has a private function called insert inside it, and I want this insert function to call the insert function inside the Tree class.
is this possible to do in C++ ?