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