akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 1 | #include "nexthop.hpp" |
2 | |||||
3 | namespace nlsr { | ||||
4 | |||||
5 | std::ostream& | ||||
6 | operator<<(std::ostream& os, NextHop& nh) | ||||
7 | { | ||||
8 | os << "Face: " << nh.getConnectingFace() << " Route Cost: " << | ||||
9 | nh.getRouteCost(); | ||||
10 | return os; | ||||
11 | } | ||||
12 | |||||
13 | }//namespace nlsr |