X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/4096be9a95ef90a463f9721817750ad84f141b0a..dad7be6bee684505c05fae88ff0c89a02db422eb:/neighbor.h diff --git a/neighbor.h b/neighbor.h index 62b9b66..b51dab1 100644 --- a/neighbor.h +++ b/neighbor.h @@ -18,7 +18,6 @@ public: // Getter and setter for load double get_load() const { return load; } void set_load(double amount) { load = amount; } - void add_load(double amount) { load += amount; } // Getter and setter for debt double get_debt() const { return debt; } @@ -27,7 +26,6 @@ public: // Getter and setter for to_send double get_to_send() const { return to_send; } void set_to_send(double amount) { to_send = amount; } - void add_to_send(double amount) { to_send += amount; } // Prints its name and load on given category, with given // priority. If verbose is true, prints debt and to_send too.