12 lines
179 B
C++
12 lines
179 B
C++
#include "animal.h"
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
animal::animal(std::string name) {
|
|
this->name = name;
|
|
}
|
|
|
|
void animal::make_sound() {
|
|
cout << name << ":" << endl;
|
|
}
|