Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / src / kernel / routing / NetPoint.cpp
index 14c4c70..2a0aeef 100644 (file)
@@ -1,9 +1,10 @@
-/* Copyright (c) 2009-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2009-2022. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #include "simgrid/kernel/routing/NetPoint.hpp"
+#include "simgrid/kernel/routing/VivaldiZone.hpp"
 #include "simgrid/s4u/Engine.hpp"
 #include "simgrid/s4u/Host.hpp"
 #include "xbt/log.h"
@@ -33,6 +34,12 @@ NetPoint* NetPoint::set_englobing_zone(NetZoneImpl* netzone_p)
   return this;
 }
 
+NetPoint* NetPoint::set_coordinates(const std::string& coords)
+{
+  if (not coords.empty())
+    new vivaldi::Coords(this, coords);
+  return this;
+}
 } // namespace routing
 } // namespace kernel
 } // namespace simgrid