Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start renaming AS to NetZone
[simgrid.git] / src / kernel / routing / AsNone.cpp
diff --git a/src/kernel/routing/AsNone.cpp b/src/kernel/routing/AsNone.cpp
deleted file mode 100644 (file)
index 5544222..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* Copyright (c) 2009-2016. The SimGrid Team. All rights reserved.          */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#include <xbt/dict.h>
-#include <xbt/graph.h>
-#include <xbt/log.h>
-
-#include "src/kernel/routing/AsNone.hpp"
-
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_none, surf, "Routing part of surf");
-
-namespace simgrid {
-namespace kernel {
-namespace routing {
-
-AsNone::AsNone(As* father, const char* name) : AsImpl(father, name)
-{}
-
-AsNone::~AsNone() = default;
-
-void AsNone::getLocalRoute(NetCard* /*src*/, NetCard* /*dst*/, sg_platf_route_cbarg_t /*res*/, double* /*lat*/)
-{}
-
-void AsNone::getGraph(xbt_graph_t /*graph*/, xbt_dict_t /*nodes*/, xbt_dict_t /*edges*/)
-{
-  XBT_ERROR("No routing no graph");
-}
-
-}}}