-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInvitations.cpp
More file actions
33 lines (26 loc) · 846 Bytes
/
Copy pathInvitations.cpp
File metadata and controls
33 lines (26 loc) · 846 Bytes
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
#include "Invitations.h"
void Invitations::getInvitation_id() {
// TODO - implement Invitations::getInvitation_id
throw "Not yet implemented";
}
void Invitations::setInvitation_id(int invitation_id) {
this->invitation_id = invitation_id;
}
void Invitations::getInvitation_statut() {
// TODO - implement Invitations::getInvitation_statut
throw "Not yet implemented";
}
void Invitations::setInvitation_statut(int invitation_statut) {
this->invitation_statut = invitation_statut;
}
void Invitations::envoyerInvitation() {
// TODO - implement Invitations::envoyerInvitation
throw "Not yet implemented";
}
void Invitations::getDate_invitation() {
// TODO - implement Invitations::getDate_invitation
throw "Not yet implemented";
}
void Invitations::setDate_invitation(int date_invitation) {
this->date_invitation = date_invitation;
}