23#include "utility/graphic/size.hpp"
25namespace utility::graphic
28 std::ostream &operator<<(std::ostream &stream,
const SizeF &size)
30 stream <<
"SizeF(width: " << size.getWidth()
31 <<
", height: " << size.getHeight() <<
")";
35 std::ostream &operator<<(std::ostream &stream,
const SizeD &size)
37 stream <<
"SizeD(width: " << size.getWidth()
38 <<
", height: " << size.getHeight() <<
")";
42 std::ostream &operator<<(std::ostream &stream,
const SizeI &size)
44 stream <<
"SizeI(width: " << size.getWidth()
45 <<
", height: " << size.getHeight() <<
")";
49 std::ostream &operator<<(std::ostream &stream,
const SizeUI &size)
51 stream <<
"SizeUI(width: " << size.getWidth()
52 <<
", height: " << size.getHeight() <<
")";