35    inline std::ostream& operator<<(std::ostream& os, 
dock_style value) {
return os << 
to_string(value, {{
dock_style::none, 
"none"}, {
dock_style::top, 
"top"}, {
dock_style::bottom, 
"bottom"}, {
dock_style::left, 
"left"}, {
dock_style::right, 
"right"}, {
dock_style::fill, 
"fill"}});}
 
   36    inline std::wostream& operator<<(std::wostream& os, 
dock_style value) {
return os << 
to_string(value, {{
dock_style::none, L
"none"}, {
dock_style::top, L
"top"}, {
dock_style::bottom, L
"bottom"}, {
dock_style::left, L
"left"}, {
dock_style::right, L
"right"}, {
dock_style::fill, L
"fill"}});}
 
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.