15 lines
264 B
C++
15 lines
264 B
C++
#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;
|
|
}
|