X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4c13ae49e3c558dd6c83e0e1a479c189f57aec45..f55c54313892793cf3be80e8bb523d6281c0bc7f:/src/surf/network_cm02.hpp diff --git a/src/surf/network_cm02.hpp b/src/surf/network_cm02.hpp index 1b9469bcde..0999119fa9 100644 --- a/src/surf/network_cm02.hpp +++ b/src/surf/network_cm02.hpp @@ -47,26 +47,12 @@ class NetworkCm02Link : public LinkImpl { public: NetworkCm02Link(NetworkCm02Model* model, const std::string& name, double bandwidth, double latency, s4u::Link::SharingPolicy policy, lmm::System* system); - virtual ~NetworkCm02Link() = default; + ~NetworkCm02Link() override = default; void apply_event(kernel::profile::Event* event, double value) override; void set_bandwidth(double value) override; void set_latency(double value) override; }; -class NetworkWifiLink : public NetworkCm02Link { - /** @brief Hold every rates association between host and links (host name, rates id) */ - std::map host_rates_; - - /** @brief A link can have several bandwith attach to it (mostly use by wifi model) */ - std::vector bandwidths_; - -public: - NetworkWifiLink(NetworkCm02Model* model, const std::string& name, std::vector bandwidths, - s4u::Link::SharingPolicy policy, lmm::System* system); - - void set_host_rate(sg_host_t host, int rate_level); -}; - /********** * Action * **********/