blob: 7af0bd452d5e55e511f7af661511db29e1435228 [file] [log] [blame]
#include "nlsr_nexthop.hpp"
ostream&
operator<<(ostream& os, NextHop& nh)
{
os<<"Face: "<<nh.getConnectingFace()<<" Route Cost: "<<nh.getRouteCost();
return os;
}