Currently it is private, which means the derived class cannot access it.
Couple of choices:
1) Make it protected instead of private, and then the derived class can access it directly;
2) Make a protected or public accessor for it in the base class and have derived class call it;
3) Write an ostream operator for the base class, output it there, and have the derived class call it.