Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
start renaming AS to NetZone
[simgrid.git] / src / kernel / routing / RoutedZone.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 SIMGRID_ROUTING_GENERIC_HPP_
7 #define SIMGRID_ROUTING_GENERIC_HPP_
8
9 #include "src/kernel/routing/NetZoneImpl.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace routing {
14
15 class XBT_PRIVATE AsRoutedGraph : public AsImpl {
16 public:
17   explicit AsRoutedGraph(As* father, const char* name);
18
19   void getGraph(xbt_graph_t graph, xbt_dict_t nodes, xbt_dict_t edges) override;
20   virtual sg_platf_route_cbarg_t newExtendedRoute(RoutingMode hierarchy, sg_platf_route_cbarg_t routearg, int change_order);
21 protected:
22   void getRouteCheckParams(NetCard *src, NetCard *dst);
23   void addRouteCheckParams(sg_platf_route_cbarg_t route);
24 };
25
26 }}} // namespace
27
28 #endif /* SIMGRID_ROUTING_GENERIC_HPP_ */