blob: 0a375b0cdf1268296acd31d8e6ec24d95fdc5c73 [file] [log] [blame]
#include "nexthop.hpp"
namespace nlsr {
std::ostream&
operator<<(std::ostream& os, NextHop& nh)
{
os << "Face: " << nh.getConnectingFace() << " Route Cost: " <<
nh.getRouteCost();
return os;
}
}//namespace nlsr