31 inline std::ostream& operator<<(std::ostream& os,
image_layout value) {
return os <<
to_string(value, {{
image_layout::none,
"none"}, {
image_layout::tile,
"tile"}, {
image_layout::center,
"center"}, {
image_layout::stretch,
"stretch"}, {
image_layout::zoom,
"zoom"}});}
32 inline std::wostream& operator<<(std::wostream& os,
image_layout value) {
return os <<
to_string(value, {{
image_layout::none, L
"none"}, {
image_layout::tile, L
"tile"}, {
image_layout::center, L
"center"}, {
image_layout::stretch, L
"stretch"}, {
image_layout::zoom, L
"zoom"}});}
std::string to_string(const value_t &value, const std::string &fmt, const std::locale &loc)
Convert a specified value into a string with specified format and locale.
Definition to_string.h:37
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition system_report.h:17
Contains xtd::ustring class.