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