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.

34 lines
1.3 KiB

3 years ago
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Brain.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/24 11:24:53 by narnaud #+# #+# */
/* Updated: 2022/06/24 11:57:44 by narnaud ### ########.fr */
/* */
/* ************************************************************************** */
#include "Brain.hpp"
Brain::Brain (void) {
cout << "Brain default constructor called " << endl;
}
Brain::Brain (Brain const & src) {
(void)src;
cout << "Brain copy constructor called" << endl;
}
Brain & Brain::operator= (Brain const & src) {
(void)src;
cout << "Brain assignment operator called" << endl;
return (*this);
}
Brain::~Brain (void) {
cout << "Brain default destructor called" << endl;
}