Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Simplify NetZone's hierarchy
[simgrid.git] / include / simgrid / kernel / routing / VivaldiZone.hpp
index 2f05dfb26661c6ef9f42c72711ae708075eeb11b..d7627b96c5aaa9d9f213a1392855a268d568bcd1 100644 (file)
@@ -46,8 +46,7 @@ namespace routing {
 
 class XBT_PRIVATE VivaldiZone : public ClusterZone {
 public:
-  explicit VivaldiZone(NetZoneImpl* father, const std::string& name, resource::NetworkModel* netmodel);
-
+  using ClusterZone::ClusterZone;
   void set_peer_link(NetPoint* netpoint, double bw_in, double bw_out, const std::string& coord);
   void get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override;
 };
@@ -57,7 +56,6 @@ class XBT_PRIVATE Coords {
 public:
   static xbt::Extension<NetPoint, Coords> EXTENSION_ID;
   explicit Coords(NetPoint* host, const std::string& str);
-  virtual ~Coords() = default;
 
   std::vector<double> coords;
 };