akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 1 | #include "nlsr_nexthop.hpp" |
2 | |||||
3 | namespace nlsr | ||||
4 | { | ||||
5 | |||||
akmhoque | 5a44dd4 | 2014-03-12 18:11:32 -0500 | [diff] [blame^] | 6 | ostream& |
7 | operator<<(ostream& os, NextHop& nh) | ||||
8 | { | ||||
9 | os<<"Face: "<<nh.getConnectingFace()<<" Route Cost: "<<nh.getRouteCost(); | ||||
10 | return os; | ||||
11 | } | ||||
akmhoque | ba09474 | 2014-02-28 11:47:21 -0600 | [diff] [blame] | 12 | |
13 | }//namespace nlsr |