X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/831de10adaaf8910940aa280e2ac2dd075b5ffe5..4df73edd0fb9d1a5a12dfeb447f15a71d79f2bbe:/src/kernel/routing/AsNone.hpp?ds=sidebyside diff --git a/src/kernel/routing/AsNone.hpp b/src/kernel/routing/AsNone.hpp index f711f51029..de11e29be4 100644 --- a/src/kernel/routing/AsNone.hpp +++ b/src/kernel/routing/AsNone.hpp @@ -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_ */