gnu: kdenlive: Add ffmpeg to input list
[jackhill/guix/guix.git] / nix / boost / format.hpp
1 // -*- C++ -*-
2 // Boost general library 'format' ---------------------------
3 // See http://www.boost.org for updates, documentation, and revision history.
4
5 // (C) Samuel Krempp 2001
6 // krempp@crans.ens-cachan.fr
7 // Permission to copy, use, modify, sell and
8 // distribute this software is granted provided this copyright notice appears
9 // in all copies. This software is provided "as is" without express or implied
10 // warranty, and with no claim as to its suitability for any purpose.
11
12 // ideas taken from RĂ¼diger Loos's format class
13 // and Karl Nelson's ofstream
14
15 // ----------------------------------------------------------------------------
16 // format.hpp : primary header
17 // ----------------------------------------------------------------------------
18
19 #ifndef BOOST_FORMAT_HPP
20 #define BOOST_FORMAT_HPP
21
22 #include <vector>
23 #include <string>
24 #include <sstream>
25 #include <cassert>
26
27 #if HAVE_LOCALE
28 #include <locale>
29 #else
30 #define BOOST_NO_STD_LOCALE
31 #define BOOST_NO_LOCALE_ISIDIGIT
32 #include <cctype>
33 #endif
34
35 #include <boost/format/macros_default.hpp>
36
37
38 // **** Forward declarations ----------------------------------
39 #include <boost/format/format_fwd.hpp> // basic_format<Ch,Tr>, and other frontends
40 #include <boost/format/internals_fwd.hpp> // misc forward declarations for internal use
41
42
43 // **** Auxiliary structs (stream_format_state<Ch,Tr> , and format_item<Ch,Tr> )
44 #include <boost/format/internals.hpp>
45
46 // **** Format class interface --------------------------------
47 #include <boost/format/format_class.hpp>
48
49 // **** Exceptions -----------------------------------------------
50 #include <boost/format/exceptions.hpp>
51
52 // **** Implementation -------------------------------------------
53 //#include <boost/format/format_implementation.hpp> // member functions
54
55 #include <boost/format/group.hpp> // class for grouping arguments
56
57 #include <boost/format/feed_args.hpp> // argument-feeding functions
58 //#include <boost/format/parsing.hpp> // format-string parsing (member-)functions
59
60 // **** Implementation of the free functions ----------------------
61 //#include <boost/format/free_funcs.hpp>
62
63
64 #endif // BOOST_FORMAT_HPP