]> git.lyx.org Git - lyx.git/blob - src/support/boost-inst.C
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / support / boost-inst.C
1 /**
2  * \file boost-inst.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #include "support/BoostFormat.h"
14
15 #if USE_BOOST_FORMAT
16
17 namespace boost
18 {
19
20 using boost::io::out_of_range_bit;
21
22 template class basic_format<char>;
23
24 template
25 std::ostream &
26 operator<< <char, std::char_traits<char> >(std::ostream &,
27                                            boost::basic_format<char> const &);
28
29 namespace io
30 {
31
32 template
33 std::string
34 str<char, std::char_traits<char> >(boost::basic_format<char> const &);
35
36 namespace detail
37 {
38
39 template
40 bool parse_printf_directive<char, std::char_traits<char> >
41 (std::string const &, std::string::size_type*,
42  format_item<char, std::char_traits<char> >*,
43  std::ios &, unsigned char);
44
45 template
46 void distribute<char, std::char_traits<char>, std::string const &>
47 (boost::basic_format<char> &, std::string const&);
48
49 template
50 boost::basic_format<char> &
51 feed<char, std::char_traits<char>,
52      std::string const &>(boost::basic_format<char> &,
53                           std::string const &);
54
55 } // namespace detail
56
57 } // namespace io
58
59 } // namespace boost
60
61 #endif // USE_BOOST_FORMAT