/* show how inheritance works using indirect references * and private class sections */ #include class parent { private: int mine; public: parent(int x = 0) { mine = x; cout << endl << "create parent "<< mine << endl; } ~parent() { cout << endl << "Destroy parent " << mine << endl;} void show_all(void) {cout <