mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
af4fca532f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5706 a592a061-630c-0410-9148-cb99ea01b6c8
52 lines
982 B
C
52 lines
982 B
C
#include <config.h>
|
|
|
|
#include "BoostFormat.h"
|
|
|
|
#if USE_BOOST_FORMAT
|
|
|
|
namespace boost
|
|
{
|
|
|
|
using boost::io::out_of_range_bit;
|
|
|
|
template class basic_format<char>;
|
|
|
|
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
|
|
|
|
} // namespace boost
|
|
|
|
#endif // USE_BOOST_FORMAT
|