This repository has been archived by the owner on Aug 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Inscription.h
91 lines (75 loc) · 3.13 KB
/
Inscription.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#ifndef INSCRIPTION_H
#define INSCRIPTION_H
#include "includes.h"
//Classe Abstraite
class Inscription{
Semestre* Sem;
QString CursusPpal;
protected :
QStringList TabUVs;
unsigned int tailleTab;
public:
//NOTE : A préciser : de quelle fonctions avons nous besoin pour l'interface graphique ?
Inscription(Semestre* s, QString cp):Sem(s), CursusPpal(cp), tailleTab(0){}
Inscription(Semestre* s, QStringList uvs, QString cp, unsigned int t): Sem(s), CursusPpal(cp), TabUVs(uvs), tailleTab(t){}
void editInscription(Semestre* s, QString cp) {
Sem=s;
CursusPpal=cp;
}
virtual void addUV(QString uv)=0;
Semestre* getSemestre() const {return Sem;}
QStringList getListUV() const {return TabUVs;}
QString getCursusPrincipal() const {return CursusPpal;}
unsigned int getTailleTab() const {return tailleTab;}
unsigned int getNbCreditsCatMax(Categorie cat) const{
unsigned int res=0;
UVManager* UVManage = UVManager::getInstance();
cout<<"Taille de la liste d'UVs"<<tailleTab<<"\n";
cout<<"(OU) Taille de la liste d'UVs"<<getListUV().size()<<"\n";
for (unsigned int i=0; i<tailleTab; i++) res+=UVManage->getNbCreditsCategorie(TabUVs.at(i), cat);
return res;
}
//Récupère le nombre de crédits CS pouvant être validés au maximum
unsigned int getNbCreditsCSMax() const{
unsigned int res=0;
UVManager* UVManage = UVManager::getInstance();
for (unsigned int i=0; i<tailleTab; i++) res+=UVManage->getNbCreditsCategorie(TabUVs.at(i), CS);
return res;
}
//Récupère le nombre de crédits TM pouvant être validés au maximum
unsigned int getNbCreditsTMMax() const{
unsigned int res=0;
UVManager* UVManage = UVManager::getInstance();
for (unsigned int i=0; i<tailleTab; i++) res+=UVManage->getNbCreditsCategorie(TabUVs.at(i), TM);
return res;
}
//Récupère le nombre de crédits TSH pouvant être validés au maximum
unsigned int getNbCreditsTSHMax() const{
unsigned int res=0;
UVManager* UVManage = UVManager::getInstance();
for (unsigned int i=0; i<tailleTab; i++) res+=UVManage->getNbCreditsCategorie(TabUVs.at(i), TSH);
return res;
}
//Récupère le nombre de crédits SP pouvant être validés au maximum
unsigned int getNbCreditsSPMax() const{
unsigned int res=0;
UVManager* UVManage = UVManager::getInstance();
for (unsigned int i=0; i<tailleTab; i++) res+=UVManage->getNbCreditsCategorie(TabUVs.at(i), SP);
return res;
}
//Récupère le nombre de crédits Total pouvant être validés au maximum
unsigned int getNbCreditsTotMax() const{
unsigned int res=0;
UVManager* UVManage = UVManager::getInstance();
for (unsigned int i=0; i<tailleTab; i++) res+=UVManage->getNbTotCredits(TabUVs.at(i));
return res;
}
//Test si l'index fourni est bien dans le tableau d'UVs
bool existUV(unsigned int i) const{
if(i>getTailleTab())
return false;
return true;
}
virtual ~Inscription(){}
};
#endif // INSCRIPTION_H