akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 1 | #include "nlsr_nexthop.hpp" |
2 | |||||
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame^] | 3 | namespace nlsr { |
4 | |||||
akmhoque | 298385a | 2014-02-13 14:13:09 -0600 | [diff] [blame] | 5 | ostream& |
6 | operator<<(ostream& os, NextHop& nh) | ||||
7 | { | ||||
8 | os<<"Face: "<<nh.getConnectingFace()<<" Route Cost: "<<nh.getRouteCost(); | ||||
9 | return os; | ||||
10 | } | ||||
akmhoque | b1710aa | 2014-02-19 17:13:36 -0600 | [diff] [blame^] | 11 | |
12 | }//namespace nlsr |