-
Notifications
You must be signed in to change notification settings - Fork 1
/
attendee.h
54 lines (48 loc) · 1014 Bytes
/
attendee.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
#ifndef ATTENDEE_H
#define ATTENDEE_H
#include <QObject>
#include <QVector>
class Attendee
{
public:
/*!
* \brief Attendee
*
* Pre: None
*
* Post: An empty Attendee is created.
*/
Attendee();
/*!
* \brief Attendee
* \param name
* \param timeSlots
*
* Pre: None
*
* Post: An Attendee is created with variables initialized.
*/
Attendee(const QString& name, const QVector<QString>& timeSlots);
/*!
* \brief getName
* \return name
*
* Pre: None
*
* Post: None
*/
QString getName() const;
/*!
* \brief getSlots
* \return QVector<QString> timeSlots
*
* Pre: None
*
* Post: None
*/
QVector<QString> getSlots() const;
private:
QString name; /*!< Name of the attendee */
QVector<QString> timeSlots; /*!< The times they are attending the associated event. */
};
#endif // ATTENDEE_H