-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTrajet.cpp
62 lines (34 loc) · 1.54 KB
/
Trajet.cpp
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
/*************************************************************************
Trajet - description
-------------------
début : 3/12/2017
copyright : (C) 2017 par Joan Capell, Hua Yang
e-mail : [email protected]
*************************************************************************/
//---------- Réalisation de la classe <Trajet> (fichier Trajet.cpp) ------------
//---------------------------------------------------------------- INCLUDE
//-------------------------------------------------------- Include système
using namespace std;
//------------------------------------------------------ Include personnel
#include "Trajet.h"
//------------------------------------------------------------- Constantes
//----------------------------------------------------------------- PUBLIC
//----------------------------------------------------- Méthodes publiques
//------------------------------------------------- Surcharge d'opérateurs
//-------------------------------------------- Constructeurs - destructeur
Trajet::Trajet()
{
#ifdef MAP
cout << "Appel au constructeur de <Trajet>" << endl;
#endif
} //----- Fin de Trajet
Trajet::~Trajet ( )
// Algorithme :
//
{
#ifdef MAP
cout << "Appel au destructeur de <Trajet>" << endl;
#endif
} //----- Fin de ~Trajet
//------------------------------------------------------------------ PRIVE
//----------------------------------------------------- Méthodes protégées