recuperation d'index libre membre protégé

This commit is contained in:
Mylloon 2022-04-06 12:42:53 +02:00
parent f1db1cca4d
commit bfd442ad85
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -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