sl@0: // ---------------------------------------------------------------------------- sl@0: // format.hpp : primary header sl@0: // ---------------------------------------------------------------------------- sl@0: sl@0: // Copyright Samuel Krempp 2003. Use, modification, and distribution are sl@0: // subject to the Boost Software License, Version 1.0. (See accompanying sl@0: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // See http://www.boost.org/libs/format for library home page sl@0: sl@0: sl@0: // ---------------------------------------------------------------------------- sl@0: sl@0: #ifndef BOOST_FORMAT_HPP sl@0: #define BOOST_FORMAT_HPP sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #ifndef BOOST_NO_STD_LOCALE sl@0: #include sl@0: #endif sl@0: sl@0: // *** Compatibility framework sl@0: #include sl@0: sl@0: #ifdef BOOST_NO_LOCALE_ISIDIGIT sl@0: #include // we'll use the non-locale 's std::isdigit(int) sl@0: #endif sl@0: sl@0: // **** Forward declarations ---------------------------------- sl@0: #include // basic_format, and other frontends sl@0: #include // misc forward declarations for internal use sl@0: sl@0: // **** Auxiliary structs (stream_format_state , and format_item ) sl@0: #include sl@0: sl@0: // **** Format class interface -------------------------------- sl@0: #include sl@0: sl@0: // **** Exceptions ----------------------------------------------- sl@0: #include sl@0: sl@0: // **** Implementation ------------------------------------------- sl@0: #include // member functions sl@0: #include // class for grouping arguments sl@0: #include // argument-feeding functions sl@0: #include // format-string parsing (member-)functions sl@0: sl@0: // **** Implementation of the free functions ---------------------- sl@0: #include sl@0: sl@0: sl@0: // *** Undefine 'local' macros : sl@0: #include sl@0: sl@0: #endif // BOOST_FORMAT_HPP