You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.1 KiB

3 years ago
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Dog.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/24 09:02:36 by narnaud #+# #+# */
/* Updated: 2022/06/24 10:10:00 by narnaud ### ########.fr */
/* */
/* ************************************************************************** */
#include "Dog.hpp"
Dog::Dog (void):Animal("Dog") {
cout << "Dog default constructor called" << endl;
}
Dog::~Dog (void) {
cout << "Dog default destructor called" << endl;
}
void Dog::makeSound(void) const {
cout << "Waouf" << endl;
}