-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbillet.hpp
41 lines (35 loc) · 809 Bytes
/
billet.hpp
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
#ifndef BILLET_HPP
#define BILLET_HPP
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include "passager.hpp"
#include "trajet.hpp"
#include "compagnie.hpp"
using namespace std;
class Passager;
class Trajet;
class Compagnie;
class Billet
{
int id;
int prix;
Passager *passager;
vector<Trajet *> trajets;
Compagnie *compagnie;
public:
Billet(int id, Passager *passager, Trajet *trajet);
Billet(int id, Passager *passager, Trajet *trajet, Compagnie *com);
~Billet();
int getId()const;
void setId(int id);
int getPrixInitial();
void setPrixInitial(int prix);
void setCompagnie(Compagnie *com);
void Affiche();
Passager *getPassager();
vector<Trajet *> getTrajets();
void ajoutTrajet(Trajet *trajet);
};
#endif