42_CPP04/ex02/src/Dog.cpp
2023-08-09 16:20:39 +00:00

35 lines
482 B
C++

#include "Dog.hpp"
#include <iostream>
Dog::Dog()
{
this->type = "Dog";
this->brain = new Brain();
std::cout << "Dog()" << std::endl;
}
Dog& Dog::operator=(const Dog& src)
{
*this->brain = *src.brain;
this->type = src.type;
return *this;
}
Dog::~Dog()
{
delete this->brain;
std::cout << "~Dog()" << std::endl;
}
Dog::Dog(const Dog& src): AAnimal()
{
this->brain = new Brain();
*this = src;
}
void Dog::makeSound() const
{
std::cout << "Ouaf ouaf !" << std::endl;
}