X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/877fd76c223fe2fba051129f3ba0339bb5566bce..455435b8a7cc8d84037aa66104a73d4760d9666f:/src/surf/surf_routing.hpp diff --git a/src/surf/surf_routing.hpp b/src/surf/surf_routing.hpp index 6f570ba767..d42dac9dbf 100644 --- a/src/surf/surf_routing.hpp +++ b/src/surf/surf_routing.hpp @@ -26,32 +26,6 @@ namespace routing { XBT_PUBLIC_DATA(simgrid::xbt::signal) asCreatedCallbacks; -/*********** - * Classes * - ***********/ - -class XBT_PRIVATE Onelink; -class RoutingPlatf; - -class AsRoute { -public: - explicit AsRoute(NetCard* gwSrc, NetCard* gwDst) : gw_src(gwSrc), gw_dst(gwDst) {} - const NetCard* gw_src; - const NetCard* gw_dst; - std::vector links; -}; - -/** @ingroup SURF_routing_interface - * @brief Link of length 1, alongside with its source and destination. This is mainly useful in the ns3 bindings - */ -class Onelink { -public: - Onelink(Link* link, NetCard* src, NetCard* dst) : src_(src), dst_(dst), link_(link){}; - NetCard* src_; - NetCard* dst_; - Link* link_; -}; - }}} #endif /* NETWORK_ROUTING_HPP_ */