Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
get ride of a stupid header file
[simgrid.git] / src / surf / surf_routing_none.cpp
1 /* Copyright (c) 2009-2011, 2013-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "src/surf/surf_routing_none.hpp"
8
9 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_none, surf, "Routing part of surf");
10
11 namespace simgrid {
12 namespace surf {
13 AsNone::AsNone(const char*name)
14   : As(name)
15 {}
16 AsNone::~AsNone()
17 {}
18
19 void AsNone::getRouteAndLatency(NetCard * /*src*/, NetCard * /*dst*/,
20                                 sg_platf_route_cbarg_t /*res*/, double */*lat*/)
21 {}
22
23 void AsNone::getGraph(xbt_graph_t /*graph*/, xbt_dict_t /*nodes*/, xbt_dict_t /*edges*/)
24 {
25   XBT_INFO("No routing no graph");
26 }
27 }
28 }