X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5787a5c839c1f49fec942290449d18b72b036d98..d07e7725e5403b21d0cfab0a8fea8a1f30fcc8bf:/src/surf/AsFull.hpp diff --git a/src/surf/AsFull.hpp b/src/surf/AsFull.hpp index f91b021d91..cfd7e5e084 100644 --- a/src/surf/AsFull.hpp +++ b/src/surf/AsFull.hpp @@ -3,21 +3,21 @@ /* 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. */ -#ifndef SURF_ROUTING_FULL_HPP_ -#define SURF_ROUTING_FULL_HPP_ +#ifndef SIMGRID_ROUTING_FULL_HPP_ +#define SIMGRID_ROUTING_FULL_HPP_ #include "src/surf/AsRoutedGraph.hpp" namespace simgrid { -namespace surf { +namespace routing { /** Full routing: fast, large memory requirements, fully expressive */ class XBT_PRIVATE AsFull: public AsRoutedGraph { public: - AsFull(const char*name); + explicit AsFull(const char*name); void seal() override; - ~AsFull(); + ~AsFull() override; void getRouteAndLatency(NetCard *src, NetCard *dst, sg_platf_route_cbarg_t into, double *latency) override; void addRoute(sg_platf_route_cbarg_t route) override; @@ -28,4 +28,4 @@ public: } } -#endif /* SURF_ROUTING_FULL_HPP_ */ +#endif /* SIMGRID_ROUTING_FULL_HPP_ */