This repository has been archived by the owner on Aug 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Note.h
360 lines (313 loc) · 7.7 KB
/
Note.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
#ifndef NOTE_H
#define NOTE_H
#include <QString>
#include <string>
#include <QDebug>
#include <vector>
#include "EntityStd.h"
/**
* @file note.h
* @version 1
* @brief Ce fichier est le header de la classe note.
**/
/**
* @brief NoteException class exception sur les notes.
*/
class NoteException : public std::exception
{
protected :
std::string info;
public:
NoteException(const std::string& i="") throw() :info(i) {}
const char* what() const throw()
{
return info.c_str();
}
~NoteException()throw() {}
};
/**
* @brief Note class permet de stocker une note sont rang et si elle est eliminatoire.
*/
class Note : public EntityStd
{
private :
/*
* @brief note
*/
QString note;
/**
* @brief description
*/
QString description;
/**
* @brief rang plus il est faible plus la note est bonne
*/
unsigned int rang;
/**
* @brief eliminatoire 0 pas éliminatoire, 1 éliminatoire, 2 en attente
*/
unsigned int eliminatoire;
public :
/**
* @brief getStrLabel
* @return retourne la note
*/
std::string getStrLabel() const
{
return note.toStdString();
}
/**
* @brief Note
* @param n note
* @param d description
* @param r rang
* @param e eliminatoire
*/
Note(std::string n, std::string d, unsigned int r, unsigned int e);
/**
* @brief Note
* @param n note
* @param d description
* @param r rang
* @param e eliminatoire
*/
Note(QString n,QString d, unsigned int r, unsigned int e);
/**
* @brief Note
* @param n note
* @param d description
* @param r rang
* @param e eliminatoire
*/
Note(const char* c, const char*d, unsigned int r, unsigned int e);
/**
* @brief getNote getter sur note
* @return
*/
QString getNote() const {return note;}
/**
* @brief getNoteStdString getter sur note
* @return
*/
std::string getNoteStdString() const {return note.toStdString();}
/**
* @brief getDescription getter sur description
* @return
*/
QString getDescription() const {return description;}
/**
* @brief getDescription getter sur description
* @return
*/
std::string getDescriptionStdString() const {return description.toStdString();}
/**
* @brief getRang getter sur rang
* @return
*/
unsigned int getRang()const{return rang;}
/**
* @brief getEliminatoire getter sur eliminatoire
* @return
*/
unsigned int getEliminatoire()const{return eliminatoire;}
/**
* @brief isEliminatory
* @return retourne vrai si la note est eliminatoire
*/
bool isEliminatory()const{return (eliminatoire==1);}
/**
* @brief isValidatory
* @return retourne vrai si la note n'est pas eliminatoire
*/
bool isValidatory()const{return (eliminatoire==0);}
/**
* @brief setNote setter sur note
* @param n
*/
void setNote(QString n){note = n;}
/**
* @brief setNote setter sur note
* @param n
*/
void setNote(std::string n){setNote(QString::fromStdString(n));}
/**
* @brief setNote setter sur note
* @param n
*/
void setNote(const char* n){setNote(std::string(n));}
/**
* @brief setDescription setter sur description
* @param d
*/
void setDescription(QString d){description = d;}
/**
* @brief setDescription setter sur description
* @param d
*/
void setDescription(std::string d){setDescription(QString::fromStdString(d));}
/**
* @brief setDescription setter sur description
* @param d
*/
void setDescription(const char* d){setDescription(std::string(d));}
/**
* @brief setRang setter sur rang
* @param r
*/
void setRang(unsigned int r);
/**
* @brief destroy Détruit propremement une note
*/
void destroy();
};
/**
* @brief StringToNote convert string en Note
* @param str
* @return
*/
Note StringToNote(const QString& str);
/**
* @brief getBestNote
* @return retourne la meilleur Note
*/
Note getBestNote();
/**
* @brief getWorstNote
* @return retourne la pire Note
*/
Note getWorstNote();
/**
* @brief getBestNote
* @param begin
* @param end
* @return
*/
/**
* @brief getBestNote
* @param begin
* @param end
* @return retourne la meilleur note entre begin et end
*/
Note getBestNote(std::vector<Note>::iterator begin,std::vector<Note>::iterator end);
/**
* @brief getWorstNote
* @param begin
* @param end
* @return retourne la pire note entre begin et end
*/
Note getWorstNote(std::vector<Note>::iterator begin,std::vector<Note>::iterator end);
/**
* @brief getBestEliminatoryNote
* @return retourne la meilleur Note éliminatoire
*/
Note getBestEliminatoryNote();
/**
* @brief getWorstValidatoryNote
* @return * @return retourne la pire Note qui valide l'UV.
*/
Note getWorstValidatoryNote();
/**
* @brief getBestEliminatoryNote
* @param begin
* @param end
* @return retourne la meilleur note eliminatoire entre begin et end
*/
Note getBestEliminatoryNote(std::vector<Note>::iterator begin,std::vector<Note>::iterator end);
/**
* @brief getWorstValidatoryNote
* @param begin
* @param end
* @return retourne la pire note qui valide l'UV entre begin et end
*/
Note getWorstValidatoryNote(std::vector<Note>::iterator begin,std::vector<Note>::iterator end);
/**
* @brief getValidatoryNotes
* @return retourne les notes qui valide les UV.
*/
std::vector<Note> getValidatoryNotes();
/**
* @brief getValidatoryNotes
* @param begin
* @param end
* @return retourne les notes qui valide les UV entrebegin et end.
*/
std::vector<Note> getValidatoryNotes(std::vector<Note>::iterator begin,std::vector<Note>::iterator end);
/**
* @brief getEliminatoryNotes
* @return retourne les notes éliminatoires.
*/
std::vector<Note> getEliminatoryNotes();
/**
* @brief getEliminatoryNotes
* @param begin
* @param end
* @return retourne les notes qui éliminatoires entre begin et end.
*/
std::vector<Note> getEliminatoryNotes(std::vector<Note>::iterator begin,std::vector<Note>::iterator end);
/**
* @brief getDeterminantNotes
* @return Ensemble des notes qui permettent de déterminer si un étudiant a obtenu l'UV.
*/
std::vector<Note> getDeterminantNotes();
/**
* @brief getDeterminantNotes
* @param begin
* @param end
*@return Ensemble des notes qui permettent de déterminer si un étudiant a obtenu l'UV. Entre deux iterateurs.
*/
std::vector<Note> getDeterminantNotes(std::vector<Note>::iterator begin,std::vector<Note>::iterator end);
/**
* @brief getNonDeterminantNotes
* @return Ensemble des notes qui ne permettent pas de déterminer si un étudiant a obtenu l'UV.
*/
std::vector<Note> getNonDeterminantNotes();
/**
* @brief getNonDeterminantNotes
* @param begin
* @param end
* @return Ensemble des notes qui ne permettent pas de déterminer si un étudiant a obtenu l'UV. Entre deux iterateurs.
*/
std::vector<Note> getNonDeterminantNotes(std::vector<Note>::iterator begin,std::vector<Note>::iterator end);
/**
* @brief operator <
* @param n1
* @param n2
* @return
*/
bool operator<(const Note n1, const Note n2);
/**
* @brief operator >
* @param n1
* @param n2
* @return
*/
bool operator>(const Note n1, const Note n2);
/**
* @brief operator ==
* @param n1
* @param n2
* @return
*/
bool operator==(const Note n1, const Note n2);
/**
* @brief operator <=
* @param n1
* @param n2
* @return
*/
bool operator<=(const Note n1, const Note n2);
/**
* @brief operator >=
* @param n1
* @param n2
* @return
*/
bool operator>=(const Note n1, const Note n2);
/**
* @brief operator !=
* @param n1
* @param n2
* @return
*/
bool operator!=(const Note n1, const Note n2);
#endif // NOTE_H