![]() |
Andrey Semashev
16.03.2008
The header contains implementation of a hook for Boost.Format-like formatters.
namespace boost { namespace log { namespace formatters { template<typename CharT> class fmt_format; fmt_format< char > format(const char *); fmt_format< char > format(std::basic_string< char > const &); fmt_format< wchar_t > format(const wchar_t *); fmt_format< wchar_t > format(std::basic_string< wchar_t > const &); } } }