2020-05-24 17:39:59 +02:00

13 lines
209 B
C++

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