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