PhoenixGenerator  2.0.4
Set of tools to generate code
Loading...
Searching...
No Matches
PProjectMembers.cpp
Go to the documentation of this file.
1/***************************************
2 Auteur : Pierre Aubert
3 Mail : pierre.aubert@lapp.in2p3.fr
4 Licence : CeCILL-C
5****************************************/
6
7
8#include "PProjectMembers.h"
9
14
16
21
26
28
33 return *this;
34}
35
37
39void PProjectMembers::setFirstName(const PString & firstName){
40 p_firstName = firstName;
41}
42
44
46void PProjectMembers::setLastName(const PString & lastName){
47 p_lastName = lastName;
48}
49
51
53void PProjectMembers::setAffiliation(const PString & affiliation){
54 p_affiliation = affiliation;
55}
56
58
60void PProjectMembers::setEmail(const PString & email){
61 p_email = email;
62}
63
65
67const PString & PProjectMembers::getFirstName() const{
68 return p_firstName;
69}
70
72
75 return p_firstName;
76}
77
79
81const PString & PProjectMembers::getLastName() const{
82 return p_lastName;
83}
84
86
89 return p_lastName;
90}
91
93
95const PString & PProjectMembers::getAffiliation() const{
96 return p_affiliation;
97}
98
100
103 return p_affiliation;
104}
105
107
109const PString & PProjectMembers::getEmail() const{
110 return p_email;
111}
112
114
117 return p_email;
118}
119
121
129
137
PProjectMembers()
Constructor of class PProjectMembers.
PString p_firstName
First Name of the member.
PString p_email
Email of the member.
void initialisationPProjectMembers()
Initialisation Function of class PProjectMembers.
void setAffiliation(const PString &affiliation)
Sets the affiliation of the PProjectMembers.
void copyPProjectMembers(const PProjectMembers &other)
Copy Function of class PProjectMembers.
const PString & getFirstName() const
Gets the firstName of the PProjectMembers.
void setFirstName(const PString &firstName)
Sets the firstName of the PProjectMembers.
void setEmail(const PString &email)
Sets the email of the PProjectMembers.
PString p_lastName
Last Name of the member.
const PString & getLastName() const
Gets the lastName of the PProjectMembers.
const PString & getEmail() const
Gets the email of the PProjectMembers.
const PString & getAffiliation() const
Gets the affiliation of the PProjectMembers.
void setLastName(const PString &lastName)
Sets the lastName of the PProjectMembers.
PString p_affiliation
Affiliation of the member.
virtual ~PProjectMembers()
Destructor of class PProjectMembers.
PProjectMembers & operator=(const PProjectMembers &other)
Operator = of class PProjectMembers.