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

16 lines
275 B
C++

#pragma once
#include <string>
// include the animal header
#include "animal.h"
using namespace std;
class dog: public animal
{
// include the animal constructor
using animal::animal;
public:
// override the make_sound function
void make_sound() override;
};