]> git.lyx.org Git - lyx.git/blob - src/BoostFormat.h
handle USE_BOOST_FORMAT
[lyx.git] / src / BoostFormat.h
1 // -*- C++ -*-
2 #ifndef LYX_BOOST_FORMAT_H
3 #define LYX_BOOST_FORMAT_H
4
5 // Only include this if it is possible to use
6 // Boost.Format at all.
7 #if USE_BOOST_FORMAT
8
9 #include <boost/format.hpp>
10
11 // Add explicit instantion
12
13 namespace boost
14 {
15
16   extern
17   template basic_format<char>;
18
19 } // namespace boost
20
21 #endif // USE_BOOST_FORMAT
22
23 #endif // LYX_BOOST_FORMAT_H