13 lines
209 B
C++
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;
|
|
}
|