sl@0
|
1 |
// ----------------------------------------------------------------------------
|
sl@0
|
2 |
// format.hpp : primary header
|
sl@0
|
3 |
// ----------------------------------------------------------------------------
|
sl@0
|
4 |
|
sl@0
|
5 |
// Copyright Samuel Krempp 2003. Use, modification, and distribution are
|
sl@0
|
6 |
// subject to the Boost Software License, Version 1.0. (See accompanying
|
sl@0
|
7 |
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
8 |
|
sl@0
|
9 |
// See http://www.boost.org/libs/format for library home page
|
sl@0
|
10 |
|
sl@0
|
11 |
|
sl@0
|
12 |
// ----------------------------------------------------------------------------
|
sl@0
|
13 |
|
sl@0
|
14 |
#ifndef BOOST_FORMAT_HPP
|
sl@0
|
15 |
#define BOOST_FORMAT_HPP
|
sl@0
|
16 |
|
sl@0
|
17 |
#include <vector>
|
sl@0
|
18 |
#include <string>
|
sl@0
|
19 |
#include <boost/detail/workaround.hpp>
|
sl@0
|
20 |
#include <boost/config.hpp>
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef BOOST_NO_STD_LOCALE
|
sl@0
|
23 |
#include <locale>
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
|
sl@0
|
26 |
// *** Compatibility framework
|
sl@0
|
27 |
#include <boost/format/detail/compat_workarounds.hpp>
|
sl@0
|
28 |
|
sl@0
|
29 |
#ifdef BOOST_NO_LOCALE_ISIDIGIT
|
sl@0
|
30 |
#include <cctype> // we'll use the non-locale <cctype>'s std::isdigit(int)
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
|
sl@0
|
33 |
// **** Forward declarations ----------------------------------
|
sl@0
|
34 |
#include <boost/format/format_fwd.hpp> // basic_format<Ch,Tr>, and other frontends
|
sl@0
|
35 |
#include <boost/format/internals_fwd.hpp> // misc forward declarations for internal use
|
sl@0
|
36 |
|
sl@0
|
37 |
// **** Auxiliary structs (stream_format_state<Ch,Tr> , and format_item<Ch,Tr> )
|
sl@0
|
38 |
#include <boost/format/internals.hpp>
|
sl@0
|
39 |
|
sl@0
|
40 |
// **** Format class interface --------------------------------
|
sl@0
|
41 |
#include <boost/format/format_class.hpp>
|
sl@0
|
42 |
|
sl@0
|
43 |
// **** Exceptions -----------------------------------------------
|
sl@0
|
44 |
#include <boost/format/exceptions.hpp>
|
sl@0
|
45 |
|
sl@0
|
46 |
// **** Implementation -------------------------------------------
|
sl@0
|
47 |
#include <boost/format/format_implementation.hpp> // member functions
|
sl@0
|
48 |
#include <boost/format/group.hpp> // class for grouping arguments
|
sl@0
|
49 |
#include <boost/format/feed_args.hpp> // argument-feeding functions
|
sl@0
|
50 |
#include <boost/format/parsing.hpp> // format-string parsing (member-)functions
|
sl@0
|
51 |
|
sl@0
|
52 |
// **** Implementation of the free functions ----------------------
|
sl@0
|
53 |
#include <boost/format/free_funcs.hpp>
|
sl@0
|
54 |
|
sl@0
|
55 |
|
sl@0
|
56 |
// *** Undefine 'local' macros :
|
sl@0
|
57 |
#include <boost/format/detail/unset_macros.hpp>
|
sl@0
|
58 |
|
sl@0
|
59 |
#endif // BOOST_FORMAT_HPP
|