Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
[simgrid.git] / src / kernel / routing / AsNone.hpp
1 /* Copyright (c) 2013-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SURF_ROUTING_NONE_HPP_
7 #define SURF_ROUTING_NONE_HPP_
8
9 #include "src/kernel/routing/AsImpl.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 /** No specific routing. Mainly useful with the constant network model */
16 class XBT_PRIVATE AsNone : public AsImpl {
17 public:
18   explicit AsNone(As* father, const char* name);
19   ~AsNone() override;
20
21   void getLocalRoute(NetCard* src, NetCard* dst, sg_platf_route_cbarg_t into, double* latency) override;
22   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
23 };
24
25 }}} // namespace
26
27 #endif /* SURF_ROUTING_NONE_HPP_ */