In the spaces below, write the code for definition of the D…
In the spaces below, write the code for definition of the Dog Class that would go in the header file (with a .h extension) so that it inherits the Pet class. The Pet Class is described in the pet.h file in Attachment C. Your solution must include the following features: Dog Inherits the Pet Provide a Dog class default constructor. A Dog constructor with two parameters: A name for the dog of string class (you may assume the is included in the file. An age of the dog which is an integer 4. A Mutator function that set the dog’s name 5. A Mutator function that set the dog’s age. 6. An Accessor function that returns the dog’s name. 7. An Accessor function that returns the dog’s age. 8. Private items of name and age of the appropriate type.