10 lines
134 B
C++
10 lines
134 B
C++
|
#include "cat.h"
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <string>
|
||
|
|
||
|
void cat::make_sound() {
|
||
|
animal::make_sound();
|
||
|
cout << "meow" << endl;
|
||
|
}
|