os/ossrv/ossrv_pub/boost_apis/boost/format.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/format.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,59 @@
     1.4 +// ----------------------------------------------------------------------------
     1.5 +// format.hpp :  primary header
     1.6 +// ----------------------------------------------------------------------------
     1.7 +
     1.8 +//  Copyright Samuel Krempp 2003. Use, modification, and distribution are
     1.9 +//  subject to the Boost Software License, Version 1.0. (See accompanying
    1.10 +//  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
    1.11 +
    1.12 +//  See http://www.boost.org/libs/format for library home page
    1.13 +
    1.14 +
    1.15 +// ----------------------------------------------------------------------------
    1.16 +
    1.17 +#ifndef BOOST_FORMAT_HPP
    1.18 +#define BOOST_FORMAT_HPP
    1.19 +
    1.20 +#include <vector>
    1.21 +#include <string>
    1.22 +#include <boost/detail/workaround.hpp>
    1.23 +#include <boost/config.hpp>
    1.24 +
    1.25 +#ifndef BOOST_NO_STD_LOCALE
    1.26 +#include <locale>
    1.27 +#endif
    1.28 +
    1.29 +// ***   Compatibility framework
    1.30 +#include <boost/format/detail/compat_workarounds.hpp>
    1.31 +
    1.32 +#ifdef BOOST_NO_LOCALE_ISIDIGIT
    1.33 +#include <cctype>  // we'll use the non-locale  <cctype>'s std::isdigit(int)
    1.34 +#endif
    1.35 +
    1.36 +// ****  Forward declarations ----------------------------------
    1.37 +#include <boost/format/format_fwd.hpp>     // basic_format<Ch,Tr>, and other frontends
    1.38 +#include <boost/format/internals_fwd.hpp>  // misc forward declarations for internal use
    1.39 +
    1.40 +// ****  Auxiliary structs (stream_format_state<Ch,Tr> , and format_item<Ch,Tr> )
    1.41 +#include <boost/format/internals.hpp>    
    1.42 +
    1.43 +// ****  Format  class  interface --------------------------------
    1.44 +#include <boost/format/format_class.hpp>
    1.45 +
    1.46 +// **** Exceptions -----------------------------------------------
    1.47 +#include <boost/format/exceptions.hpp>
    1.48 +
    1.49 +// **** Implementation -------------------------------------------
    1.50 +#include <boost/format/format_implementation.hpp>   // member functions
    1.51 +#include <boost/format/group.hpp>                   // class for grouping arguments
    1.52 +#include <boost/format/feed_args.hpp>               // argument-feeding functions
    1.53 +#include <boost/format/parsing.hpp>                 // format-string parsing (member-)functions
    1.54 +
    1.55 +// **** Implementation of the free functions ----------------------
    1.56 +#include <boost/format/free_funcs.hpp>
    1.57 +
    1.58 +
    1.59 +// *** Undefine 'local' macros :
    1.60 +#include <boost/format/detail/unset_macros.hpp>
    1.61 +
    1.62 +#endif // BOOST_FORMAT_HPP