recuperation d'index libre membre protégé
This commit is contained in:
parent
f1db1cca4d
commit
bfd442ad85
1 changed files with 3 additions and 3 deletions
|
@ -17,6 +17,9 @@ class Organisme {
|
|||
|
||||
int m_index; // Location dans l'univers
|
||||
|
||||
// Renvoie un index libre
|
||||
int recuperationIndexLibre(const int);
|
||||
|
||||
public:
|
||||
const int ID; // ID unique pour chaque organisme
|
||||
|
||||
|
@ -36,9 +39,6 @@ class Organisme {
|
|||
|
||||
// Renvoie les positions exact de l'organisme dans l'univers
|
||||
std::pair<int, std::pair<int, int>> position(const int) const noexcept;
|
||||
|
||||
// Renvoie un index libre
|
||||
int recuperationIndexLibre(const int);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Reference in a new issue