2020-05-24 17:04:37 +02:00
|
|
|
#include "dog.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
void dog::make_sound() {
|
2020-05-24 17:39:59 +02:00
|
|
|
// implement own functionality
|
2020-05-24 17:04:37 +02:00
|
|
|
cout << "doggo " << name << " says:" << endl;
|
|
|
|
cout << "woof!" << endl;
|
|
|
|
}
|