Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move all network models to the kernel::resource namespace
[simgrid.git] / include / simgrid / kernel / routing / FullZone.hpp
index a969f3b..99722a1 100644 (file)
@@ -24,12 +24,12 @@ public:
   void seal() override;
   ~FullZone() override;
 
-  void getLocalRoute(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override;
-  void addRoute(kernel::routing::NetPoint* src, kernel::routing::NetPoint* dst, kernel::routing::NetPoint* gw_src,
-                kernel::routing::NetPoint* gw_dst, std::vector<simgrid::surf::LinkImpl*>& link_list,
-                bool symmetrical) override;
+  void get_local_route(NetPoint* src, NetPoint* dst, RouteCreationArgs* into, double* latency) override;
+  void add_route(NetPoint* src, NetPoint* dst, NetPoint* gw_src, NetPoint* gw_dst,
+                 std::vector<resource::LinkImpl*>& link_list, bool symmetrical) override;
 
-  RouteCreationArgs** routingTable_ = nullptr;
+private:
+  RouteCreationArgs** routing_table_ = nullptr;
 };
 } // namespace routing
 } // namespace kernel