2 // Boost general library 'format' ---------------------------
3 // See http://www.boost.org for updates, documentation, and revision history.
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.
12 // ideas taken from RĂ¼diger Loos's format class
13 // and Karl Nelson's ofstream
15 // ----------------------------------------------------------------------------
16 // format.hpp : primary header
17 // ----------------------------------------------------------------------------
19 #ifndef BOOST_FORMAT_HPP
20 #define BOOST_FORMAT_HPP
30 #define BOOST_NO_STD_LOCALE
31 #define BOOST_NO_LOCALE_ISIDIGIT
35 #include <boost/format/macros_default.hpp>
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
43 // **** Auxiliary structs (stream_format_state<Ch,Tr> , and format_item<Ch,Tr> )
44 #include <boost/format/internals.hpp>
46 // **** Format class interface --------------------------------
47 #include <boost/format/format_class.hpp>
49 // **** Exceptions -----------------------------------------------
50 #include <boost/format/exceptions.hpp>
52 // **** Implementation -------------------------------------------
53 //#include <boost/format/format_implementation.hpp> // member functions
55 #include <boost/format/group.hpp> // class for grouping arguments
57 #include <boost/format/feed_args.hpp> // argument-feeding functions
58 //#include <boost/format/parsing.hpp> // format-string parsing (member-)functions
60 // **** Implementation of the free functions ----------------------
61 //#include <boost/format/free_funcs.hpp>
64 #endif // BOOST_FORMAT_HPP