Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Constify pointer and reference parameters in src/surf/.
[simgrid.git] / src / surf / network_wifi.hpp
index 33e672d..4092d12 100644 (file)
@@ -19,7 +19,7 @@ namespace simgrid {
 namespace kernel {
 namespace resource {
 
-class NetworkWifiLink : public NetworkCm02Link {
+class NetworkWifiLink : public LinkImpl {
   /** @brief Hold every rates association between host and links (host name, rates id) */
   std::map<xbt::string, int> host_rates_;
 
@@ -28,12 +28,16 @@ class NetworkWifiLink : public NetworkCm02Link {
 
 public:
   NetworkWifiLink(NetworkCm02Model* model, const std::string& name, std::vector<double> bandwidths,
-                  s4u::Link::SharingPolicy policy, lmm::System* system);
+                  lmm::System* system);
 
-  void set_host_rate(s4u::Host* host, int rate_level);
+  void set_host_rate(const s4u::Host* host, int rate_level);
   /** @brief Get the AP rate associated to the host (or -1 if not associated to the AP) */
-  double get_host_rate(s4u::Host* host);
+  double get_host_rate(const s4u::Host* host);
+
   s4u::Link::SharingPolicy get_sharing_policy() override;
+  void apply_event(kernel::profile::Event*, double) override { THROW_UNIMPLEMENTED; }
+  void set_bandwidth(double) override { THROW_UNIMPLEMENTED; }
+  void set_latency(double) override { THROW_UNIMPLEMENTED; }
 };
 
 } // namespace resource