Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
split NetZone and NetZoneImpl as it should in s4u realm
[simgrid.git] / include / simgrid / kernel / routing / EmptyZone.hpp
index cb64ff5..b015de0 100644 (file)
@@ -21,16 +21,16 @@ namespace routing {
 
 class XBT_PRIVATE EmptyZone : public NetZoneImpl {
 public:
-  explicit EmptyZone(NetZone* father, std::string name);
+  explicit EmptyZone(NetZoneImpl* father, std::string name);
   ~EmptyZone() override;
 
-  void getLocalRoute(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override
+  void get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override
   {
     /* There can't be route in an Empty zone */
   }
 
-  void getGraph(xbt_graph_t graph, std::map<std::string, xbt_node_t>* /*nodes*/,
-                std::map<std::string, xbt_edge_t>* /*edges*/) override;
+  void get_graph(xbt_graph_t graph, std::map<std::string, xbt_node_t>* /*nodes*/,
+                 std::map<std::string, xbt_edge_t>* /*edges*/) override;
 };
 } // namespace routing
 } // namespace kernel