Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
routing: cosmetics and doc improvement
[simgrid.git] / src / kernel / routing / AsNone.hpp
index f711f51..de11e29 100644 (file)
@@ -9,19 +9,19 @@
 #include "src/kernel/routing/AsImpl.hpp"
 
 namespace simgrid {
+namespace kernel {
 namespace routing {
 
 /** No specific routing. Mainly useful with the constant network model */
 class XBT_PRIVATE AsNone : public AsImpl {
 public:
-  explicit AsNone(const char*name);
+  explicit AsNone(As* father, const char* name);
   ~AsNone() override;
 
   void getRouteAndLatency(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
 
 #endif /* SURF_ROUTING_NONE_HPP_ */