CPP
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
#ifndef CPILOTE_H
#define CPILOTE_H
#include <CPersonne.h>
class CPilote : public CPersonne
{
public:
CPilote();
~CPilote();
int GetNbreHeureVole()
void SetNbreHeureVole(int nb)
bool EstFatigue()
private:
int NbreHeureVole;
}
protected:
};
#endif // CPILOTE_H
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run