/** @file natural_unit_iostream.hpp * * Author: Roland Conybeare **/ #pragma once #include "natural_unit.hpp" #include "bpu_iostream.hpp" #include namespace xo { namespace qty { template inline std::ostream & operator<<(std::ostream & os, const natural_unit & x) { os << " 0) os << ", "; os << x[i]; } os << "]>"; return os; } } /*namespace qty*/ } /*namespace xo*/ /** end natural_unit_iostream.hpp **/