#pragma once #include // include the animal header #include "animal.h" using namespace std; // make the class inherit from animal class cat: public animal { // include the animal constructor using animal::animal; public: // override the make_sound function void make_sound() override; };