Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to sort out the surf headers a bit, if possible
[simgrid.git] / src / surf / surf_routing_none.hpp
1 /* Copyright (c) 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 <xbt/base.h>
8
9 #include "surf_routing.hpp"
10
11 #ifndef SURF_ROUTING_NONE_HPP_
12 #define SURF_ROUTING_NONE_HPP_
13
14 namespace simgrid {
15 namespace surf {
16
17 /** No specific routing. Mainly useful with the constant network model */
18 class XBT_PRIVATE AsNone : public As {
19 public:
20   AsNone(const char*name);
21   ~AsNone();
22
23   void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override;
24   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
25 };
26
27 }
28 }
29
30 #endif /* SURF_ROUTING_NONE_HPP_ */