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

26 lines
465 B
C++
Raw Normal View History

2023-10-19 23:05:11 +02:00
#include "../includes/ProtoProjet.hpp"
2023-10-27 18:01:17 +02:00
ProtoProjet::ProtoProjet() {}
2023-10-19 23:05:11 +02:00
ProtoProjet::~ProtoProjet() {}
2023-10-27 20:29:48 +02:00
ProtoProjet::ProtoProjet(const ProtoProjet &) : Projet() {}
2023-10-19 23:05:11 +02:00
const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) {
if (this == &src) {
return *this;
}
return *this;
}
2023-10-26 19:08:00 +02:00
2023-10-27 21:40:27 +02:00
void ProtoProjet::cleanMarks() {
for (auto t : taches) {
t->visite = false;
}
2023-10-27 18:01:17 +02:00
};
2023-10-27 21:40:27 +02:00
/* bool ProtoProjet::ajoute(std::string nom, int duree) {
2023-10-27 20:29:48 +02:00
return false;
} */