modify facet filler

This commit is contained in:
diego.mateos 2024-01-25 16:14:40 +01:00
parent 33b0eb9fa3
commit 4fda966533
2 changed files with 29 additions and 0 deletions

View file

@ -141,6 +141,14 @@ namespace glm
GLM_FUNC_DECL explicit delimeter(CTy /* left */, CTy /* right */, CTy /* separator */ = ',');
};
template<typename CTy>
struct filler
{
CTy value[2];
GLM_FUNC_DECL explicit filler(CTy /* Space */ = ' ', CTy /* Newline */ = '\n');
};
struct order
{
order_type value;
@ -164,6 +172,8 @@ namespace glm
template<typename CTy, typename CTr>
std::basic_ostream<CTy, CTr>& operator<<(std::basic_ostream<CTy, CTr>&, delimeter<CTy> const&);
template<typename CTy, typename CTr>
std::basic_ostream<CTy, CTr>& operator<<(std::basic_ostream<CTy, CTr>&, filler<CTy> const&);
template<typename CTy, typename CTr>
std::basic_ostream<CTy, CTr>& operator<<(std::basic_ostream<CTy, CTr>&, order const&);
}//namespace io

View file

@ -95,6 +95,14 @@ namespace io
value[2] = c;
}
template<typename CTy>
GLM_FUNC_QUALIFIER filler<CTy>::filler(CTy a, CTy b)
: value()
{
value[0] = a;
value[1] = b;
}
GLM_FUNC_QUALIFIER order::order(order_type a)
: value(a)
{}
@ -148,6 +156,17 @@ namespace io
return os;
}
template<typename CTy, typename CTr>
GLM_FUNC_QUALIFIER std::basic_ostream<CTy, CTr>& operator<<(std::basic_ostream<CTy, CTr>& os, filler<CTy> const& a)
{
format_punct<CTy> & fmt(const_cast<format_punct<CTy>&>(get_facet<format_punct<CTy> >(os)));
fmt.space = a.value[0];
fmt.newline = a.value[1];
return os;
}
template<typename CTy, typename CTr>
GLM_FUNC_QUALIFIER std::basic_ostream<CTy, CTr>& operator<<(std::basic_ostream<CTy, CTr>& os, order const& a)
{