]> git.lyx.org Git - lyx.git/blob - src/support/boost-inst.C
ws changes only
[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 template class basic_format<char>;
21
22 template
23 std::ostream &
24 operator<< <char, std::char_traits<char> >(std::ostream &,
25                                            boost::basic_format<char> const &);
26
27 namespace io
28 {
29
30 template
31 std::string
32 str<char, std::char_traits<char> >(boost::basic_format<char> const &);
33
34 namespace detail
35 {
36
37 template
38 bool parse_printf_directive<char, std::char_traits<char> >
39 (std::string const &, std::string::size_type*,
40  format_item<char, std::char_traits<char> >*,
41  std::ios &, unsigned char);
42
43 template
44 void distribute<char, std::char_traits<char>, std::string const &>
45 (boost::basic_format<char> &, std::string const&);
46
47 template
48 boost::basic_format<char> &
49 feed<char, std::char_traits<char>,
50      std::string const &>(boost::basic_format<char> &,
51                           std::string const &);
52
53 } // namespace detail
54
55 } // namespace io
56
57 } // namespace boost
58
59 #endif // USE_BOOST_FORMAT