Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start rewriting the platform documentation now that AS are called netzones
[simgrid.git] / src / kernel / routing / EmptyZone.hpp
index c7e5ec3..ad8c7a3 100644 (file)
@@ -13,15 +13,16 @@ namespace kernel {
 namespace routing {
 
 /** No specific routing. Mainly useful with the constant network model */
-class XBT_PRIVATE AsNone : public AsImpl {
+class XBT_PRIVATE EmptyZone : public NetZoneImpl {
 public:
-  explicit AsNone(As* father, const char* name);
-  ~AsNone() override;
+  explicit EmptyZone(NetZone* father, const char* name);
+  ~EmptyZone() override;
 
   void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t into, double* latency) override;
   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
 };
-
-}}} // namespace
+}
+}
+} // namespace
 
 #endif /* SURF_ROUTING_NONE_HPP_ */