forked from goupix/Projet_EColi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lignee_B.h
executable file
·88 lines (68 loc) · 1.67 KB
/
Lignee_B.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
86
87
88
#ifndef LIGNEE_B
#define LIGNEE_B
//==============================
// INCLUDES
//==============================
/**
* @class Bacteries
* @brief Creates a Character
*/
#include "Bacterie.h"
class Lignee_B: public Bacterie
{
public:
//==============================
// CONSTRUCTORS
//==============================
Lignee_B();
Lignee_B(float a, float b, float c);
//==============================
// DESTRUCTOR
//==============================
virtual ~Lignee_B();
//==============================
// 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 Bacterie* Division();
virtual int Death();
/*virtual void Deplacement();*/
virtual int Mute();
static int nombre_B();
virtual float absorb(float c, float h);
protected:
//==============================
// PROTECTED METHODS
//==============================
//==============================
// ATTRIBUTES
//==============================
float Rbb;
float Rbc;
float& w=C_int;
static int compteur_B;
//==============================
// GETTER DEFINITION
//==============================
//==============================
// SETTER DEFINITION
//==============================
//==============================
// OPERATOR DEFINITION
//==============================
};
#endif // LIGNEE_B