X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/f4125505064e3ff346b31ab9e48f894672e5a7a7..f3cbd5740fd2c6e770459ed6e10826b7a317c2d2:/neighbor.h?ds=sidebyside diff --git a/neighbor.h b/neighbor.h index 4bd05a9..7700cb3 100644 --- a/neighbor.h +++ b/neighbor.h @@ -1,31 +1,34 @@ #ifndef NEIGHBOR_H #define NEIGHBOR_H -#include -#include +#include +#include "hostdata.h" class neighbor { public: neighbor(const char* hostname); ~neighbor(); - const char* get_name() const { return name.c_str(); } - const char* get_ctrl_mbox() const { return ctrl_mbox.c_str(); } - const char* get_data_mbox() const { return data_mbox.c_str(); } + const char* get_name() const { return host->get_name(); } + const char* get_ctrl_mbox() const { return host->get_ctrl_mbox(); } + const char* get_data_mbox() const { return host->get_data_mbox(); } - double get_load() const { return load; } - void set_load(double l) { load = l; } + double get_load() const { return load; } + void set_load(double amount) { load = amount; } - double get_debt() const { return debt; } - void set_debt(double d) { debt = d; } + double get_debt() const { return debt; } + void set_debt(double amount) { debt = amount; } + + double get_to_send() const { return to_send; } + void set_to_send(double amount) { to_send = amount; } private: - std::string name; - std::string ctrl_mbox; - std::string data_mbox; + const hostdata* host; double load; double debt; + + double to_send; }; #endif // !NEIGHBOR_H