This repository has been archived on 2023-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
GestionProjet/src/Expert.cpp

16 lines
280 B
C++
Raw Normal View History

2023-10-19 23:05:11 +02:00
#include "../includes/Expert.hpp"
Expert::Expert() { std::cout << "Hello, Expert!\n"; }
Expert::~Expert() {}
2023-10-27 23:27:41 +02:00
Expert::Expert(const Expert &) : Gestionnaire() {}
2023-10-19 23:05:11 +02:00
const Expert &Expert::operator=(const Expert &src) {
if (this == &src) {
return *this;
}
return *this;
}