mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
365b73748f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5717 a592a061-630c-0410-9148-cb99ea01b6c8
62 lines
1.2 KiB
C++
62 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
#ifndef LYX_BOOST_FORMAT_H
|
|
#define LYX_BOOST_FORMAT_H
|
|
|
|
// Only include this if it is possible to use
|
|
// Boost.Format at all.
|
|
#if USE_BOOST_FORMAT
|
|
|
|
#include <boost/format.hpp>
|
|
|
|
// Add explicit instantion for g++ compilers
|
|
#ifdef __GNUG__
|
|
|
|
namespace boost
|
|
{
|
|
|
|
extern
|
|
template basic_format<char>;
|
|
|
|
extern template
|
|
std::ostream &
|
|
operator<< <char, std::char_traits<char> >(std::ostream &,
|
|
boost::basic_format<char> const &);
|
|
|
|
namespace io
|
|
{
|
|
|
|
extern template
|
|
std::string
|
|
str<char, std::char_traits<char> >(boost::basic_format<char> const &);
|
|
|
|
namespace detail
|
|
{
|
|
|
|
extern 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);
|
|
|
|
extern template
|
|
void distribute<char, std::char_traits<char>, std::string const &>
|
|
(boost::basic_format<char>&, std::string const &);
|
|
|
|
extern 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 // __GNUG__
|
|
|
|
#endif // USE_BOOST_FORMAT
|
|
|
|
#endif // LYX_BOOST_FORMAT_H
|