X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a22eb0ac7d22d5beaa6e33adf8f85c28dac59024..6e8a5aeab4a376b73cdcbe116d2437af319cafc3:/src/kernel/routing/EmptyZone.cpp diff --git a/src/kernel/routing/EmptyZone.cpp b/src/kernel/routing/EmptyZone.cpp index 50b9ac3ae3..3ef273611c 100644 --- a/src/kernel/routing/EmptyZone.cpp +++ b/src/kernel/routing/EmptyZone.cpp @@ -15,17 +15,16 @@ namespace simgrid { namespace kernel { namespace routing { -AsNone::AsNone(As* father, const char* name) : AsImpl(father, name) -{} - -AsNone::~AsNone() = default; +EmptyZone::EmptyZone(NetZone* father, std::string name) : NetZoneImpl(father, name) +{ +} -void AsNone::getLocalRoute(NetCard* /*src*/, NetCard* /*dst*/, sg_platf_route_cbarg_t /*res*/, double* /*lat*/) -{} +EmptyZone::~EmptyZone() = default; -void AsNone::getGraph(xbt_graph_t /*graph*/, xbt_dict_t /*nodes*/, xbt_dict_t /*edges*/) +void EmptyZone::getGraph(xbt_graph_t /*graph*/, xbt_dict_t /*nodes*/, xbt_dict_t /*edges*/) { XBT_ERROR("No routing no graph"); } - -}}} +} +} +}