blob: e58b23cafbee78f835bd21a2c13a1ce6880c12aa [file] [log] [blame]
akmhoqueba094742014-02-28 11:47:21 -06001#include "nlsr_nexthop.hpp"
2
3namespace 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