blob: 1c7257b2b5011e56ec299e340bfff733054417ae [file] [log] [blame]
akmhoqueba094742014-02-28 11:47:21 -06001#include "nlsr_nexthop.hpp"
2
3namespace nlsr
4{
5
akmhoque5a44dd42014-03-12 18:11:32 -05006 ostream&
7 operator<<(ostream& os, NextHop& nh)
8 {
9 os<<"Face: "<<nh.getConnectingFace()<<" Route Cost: "<<nh.getRouteCost();
10 return os;
11 }
akmhoqueba094742014-02-28 11:47:21 -060012
13}//namespace nlsr