#include "cat.h" #include #include void cat::make_sound() { // call the base class function first animal::make_sound(); // add additional functionality cout << "meow" << endl; }