-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLignee_L.h
executable file
·85 lines (66 loc) · 1.76 KB
/
Lignee_L.h
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
78
79
80
81
82
83
84
85
#ifndef LIGNEE_L
#define LIGNEE_L
//==============================
// INCLUDES
//==============================
/**
* @class Bacteries
* @brief Creates a Bacteria of type A
*/
#include "Bacterie.h"
class Lignee_L: public Bacterie{
public:
//==============================
// CONSTRUCTORS
//==============================
Lignee_L();
Lignee_L(float a, float b, float c);
//==============================
// DESTRUCTOR
//==============================
virtual ~Lignee_L();
//==============================
// GETTERS
//==============================
virtual float GetA_int();
virtual float GetB_int();
virtual float GetC_int();
virtual char Gettype();
virtual float& Getw();
//==============================
// SETTERS
//==============================
//==============================
// OPERATORS
//==============================
//==============================
// PUBLIC METHODS
//==============================
virtual void Describe();
virtual int Death();
virtual Bacterie* Division();
virtual int Mute();
static int nombre_L();
virtual float absorb(float c, float h);
protected:
//==============================
// PROTECTED METHODS
//==============================
//==============================
// ATTRIBUTES
//==============================
float Raa;// taux d'absorption
float Rab;//taux de conversion
float& w=B_int;//fitness
static int compteur_L;//variable qui compte les instances de la classe Lignee_L
//==============================
// GETTER DEFINITION
//==============================
//==============================
// SETTER DEFINITION
//==============================
//==============================
// OPERATOR DEFINITION
//==============================
};
#endif // LIGNEE_L