X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/390ee57ed79bf7577c2bce6df6a25aba57ff476e..118d3f4ca3b1f74eb632dec688ca5c7dfab7f1ba:/src/surf/surf_routing.hpp diff --git a/src/surf/surf_routing.hpp b/src/surf/surf_routing.hpp index 888e3d01a0..878ffc9915 100644 --- a/src/surf/surf_routing.hpp +++ b/src/surf/surf_routing.hpp @@ -30,8 +30,6 @@ namespace routing { * Classes * ***********/ -class XBT_PRIVATE Onelink; - class AsRoute { public: explicit AsRoute(NetCard* gwSrc, NetCard* gwDst) : gw_src(gwSrc), gw_dst(gwDst) {} @@ -40,17 +38,6 @@ public: 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_ */