#include "../includes/Expert.hpp" Expert::Expert() { std::cout << "Hello, Expert!\n"; } Expert::~Expert() {} Expert::Expert(const Expert &) : Gestionnaire() {} const Expert &Expert::operator=(const Expert &src) { if (this == &src) { return *this; } return *this; }