2002-11-21 18:33:09 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "BoostFormat.h"
|
|
|
|
|
2002-11-24 15:20:31 +00:00
|
|
|
#if USE_BOOST_FORMAT
|
2002-11-21 18:33:09 +00:00
|
|
|
|
|
|
|
namespace boost
|
|
|
|
{
|
|
|
|
|
|
|
|
using boost::io::out_of_range_bit;
|
|
|
|
|
|
|
|
template class basic_format<char>;
|
|
|
|
|
2002-11-25 00:42:20 +00:00
|
|
|
template
|
|
|
|
std::ostream &
|
|
|
|
operator<< <char, std::char_traits<char> >(std::ostream &,
|
|
|
|
boost::basic_format<char> const &);
|
|
|
|
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
|
|
|
|
template
|
|
|
|
std::string
|
|
|
|
str<char, std::char_traits<char> >(boost::basic_format<char> const &);
|
|
|
|
|
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
|
|
|
|
template
|
|
|
|
bool parse_printf_directive<char, std::char_traits<char> >
|
|
|
|
(std::string const &, std::string::size_type*,
|
|
|
|
format_item<char, std::char_traits<char> >*,
|
|
|
|
std::ios &, unsigned char);
|
|
|
|
|
|
|
|
template
|
|
|
|
void distribute<char, std::char_traits<char>, std::string const &>
|
|
|
|
(boost::basic_format<char> &, std::string const&);
|
|
|
|
|
|
|
|
template
|
|
|
|
boost::basic_format<char> &
|
|
|
|
feed<char, std::char_traits<char>,
|
|
|
|
std::string const &>(boost::basic_format<char> &,
|
|
|
|
std::string const &);
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
} // namespace io
|
|
|
|
|
2002-11-21 18:33:09 +00:00
|
|
|
} // namespace boost
|
2002-11-24 15:20:31 +00:00
|
|
|
|
|
|
|
#endif // USE_BOOST_FORMAT
|