-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGovernmentAgencyEmployee.cpp
More file actions
77 lines (63 loc) · 2.66 KB
/
GovernmentAgencyEmployee.cpp
File metadata and controls
77 lines (63 loc) · 2.66 KB
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
/*************************************************************************
GovernmentAgencyEmployee - description
-------------------
début : $DATE$
copyright : (C) $YEAR$ par $AUTHOR$
e-mail : $EMAIL$
*************************************************************************/
//---------- Réalisation de la classe <GovernmentAgencyEmployee> (fichier GovernmentAgencyEmployee.cpp) ------------
//---------------------------------------------------------------- INCLUDE
//-------------------------------------------------------- Include système
#include <iostream>
using namespace std;
//------------------------------------------------------ Include personnel
#include "GovernmentAgencyEmployee.h"
//------------------------------------------------------------- Constantes
//----------------------------------------------------------------- PUBLIC
//----------------------------------------------------- Méthodes publiques
// type GovernmentAgencyEmployee::Méthode ( liste des paramètres )
// Algorithme :
//
//{
//} //----- Fin de Méthode
//------------------------------------------------- Surcharge d'opérateurs
GovernmentAgencyEmployee &GovernmentAgencyEmployee::operator=(const GovernmentAgencyEmployee &unGovernmentAgencyEmployee)
// Algorithme :
//
{
} //----- Fin de operator =
//-------------------------------------------- Constructeurs - destructeur
GovernmentAgencyEmployee::GovernmentAgencyEmployee(const GovernmentAgencyEmployee &unGovernmentAgencyEmployee)
// Algorithme :
//
{
#ifdef MAP
cout << "Appel au constructeur de copie de <GovernmentAgencyEmployee>" << endl;
#endif
} //----- Fin de GovernmentAgencyEmployee (constructeur de copie)
GovernmentAgencyEmployee::GovernmentAgencyEmployee()
// Algorithme :
//
{
#ifdef MAP
cout << "Appel au constructeur de <GovernmentAgencyEmployee>" << endl;
#endif
} //----- Fin de GovernmentAgencyEmployee
GovernmentAgencyEmployee::GovernmentAgencyEmployee(string id, string login, string password) : User(id, login, password)
// Algorithme :
//
{
#ifdef MAP
cout << "Appel au constructeur de <GovernmentAgencyEmployee>" << endl;
#endif
} //----- Fin de GovernmentAgencyEmployee
GovernmentAgencyEmployee::~GovernmentAgencyEmployee()
// Algorithme :
//
{
#ifdef MAP
cout << "Appel au destructeur de <GovernmentAgencyEmployee>" << endl;
#endif
} //----- Fin de ~GovernmentAgencyEmployee
//------------------------------------------------------------------ PRIVE
//----------------------------------------------------- Méthodes protégées