/** @file scaled_unit_iostream.hpp * * Author: Roland Conybeare **/ #pragma once #include "scaled_unit.hpp" #include "natural_unit_iostream.hpp" #include "xo/flatstring/int128_iostream.hpp" #include namespace xo { namespace qty { template inline std::ostream & operator<<(std::ostream & os, const scaled_unit & x) { os << ""; return os; }; } /*namespace qty*/ } /*namespace xo*/ /** end scaled_unit_iostream.hpp **/