1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef BOOST_FORMAT_HPP
- #define BOOST_FORMAT_HPP
- #include <vector>
- #include <string>
- #include <boost/detail/workaround.hpp>
- #include <boost/config.hpp>
- #ifndef BOOST_NO_STD_LOCALE
- #include <locale>
- #endif
- #include <boost/format/detail/compat_workarounds.hpp>
- #ifdef BOOST_NO_LOCALE_ISIDIGIT
- #include <cctype> // we'll use the non-locale <cctype>'s std::isdigit(int)
- #endif
- #include <boost/format/format_fwd.hpp> // basic_format<Ch,Tr>, and other frontends
- #include <boost/format/internals_fwd.hpp> // misc forward declarations for internal use
- #include <boost/format/internals.hpp>
- #include <boost/format/format_class.hpp>
- #include <boost/format/exceptions.hpp>
- #include <boost/format/format_implementation.hpp> // member functions
- #include <boost/format/group.hpp> // class for grouping arguments
- #include <boost/format/feed_args.hpp> // argument-feeding functions
- #include <boost/format/parsing.hpp> // format-string parsing (member-)functions
- #include <boost/format/free_funcs.hpp>
- #include <boost/format/detail/unset_macros.hpp>
- #endif
|