X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a46510650f4fe2e157740c0f1982da871ac9c3ce..8fb33d38a40ca0d377aa543a401d34309514e542:/src/surf/network_interface.hpp?ds=sidebyside diff --git a/src/surf/network_interface.hpp b/src/surf/network_interface.hpp index 435e70c509..9fffd5b88f 100644 --- a/src/surf/network_interface.hpp +++ b/src/surf/network_interface.hpp @@ -125,13 +125,13 @@ public: s4u::Link* get_iface() { return &piface_; } /** @brief Get the bandwidth in bytes per second of current Link */ - virtual double get_bandwidth(); + double get_bandwidth() const; /** @brief Update the bandwidth in bytes per second of current Link */ virtual void set_bandwidth(double value) = 0; /** @brief Get the latency in seconds of current Link */ - virtual double get_latency(); + double get_latency() const; /** @brief Update the latency in seconds of current Link */ virtual void set_latency(double value) = 0; @@ -140,7 +140,7 @@ public: virtual s4u::Link::SharingPolicy get_sharing_policy() const; /** @brief Check if the Link is used */ - bool is_used() override; + bool is_used() const override; void turn_on() override; void turn_off() override;