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/RunProjet.cpp

24 lines
486 B
C++
Raw Normal View History

2023-10-19 23:05:11 +02:00
#include "../includes/RunProjet.hpp"
2023-10-28 02:09:10 +02:00
RunProjet::RunProjet(ProtoProjet &src) : ProtoProjet(src) { src.free_taches(); }
2023-10-19 23:05:11 +02:00
RunProjet::~RunProjet() {}
2023-10-28 02:09:10 +02:00
RunProjet::RunProjet(const RunProjet &src) : ProtoProjet(src) {}
2023-10-19 23:05:11 +02:00
const RunProjet &RunProjet::operator=(const RunProjet &src) {
if (this == &src) {
return *this;
}
return *this;
}
2023-10-28 02:09:10 +02:00
std::ostream &operator<<(std::ostream &out, const RunProjet &data) {
for (Tache *t : data.taches) {
out << *t << "\n";
}
return out;
}