12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #ifndef BOOST_FORMAT_FUNCS_HPP
- #define BOOST_FORMAT_FUNCS_HPP
- #include <boost/format/format_class.hpp>
- #include <boost/throw_exception.hpp>
- namespace boost {
- template<class Ch, class Tr, class Alloc> inline
- std::basic_string<Ch, Tr, Alloc> str(const basic_format<Ch, Tr, Alloc>& f) {
-
- return f.str();
- }
- namespace io {
- using ::boost::str;
- }
- #ifndef BOOST_NO_TEMPLATE_STD_STREAM
- template<class Ch, class Tr, class Alloc>
- std::basic_ostream<Ch, Tr> &
- operator<<( std::basic_ostream<Ch, Tr> & os,
- const basic_format<Ch, Tr, Alloc>& f)
- #else
- template<class Ch, class Tr, class Alloc>
- std::ostream &
- operator<<( std::ostream & os,
- const basic_format<Ch, Tr, Alloc>& f)
- #endif
-
- {
- typedef boost::basic_format<Ch, Tr, Alloc> format_t;
- if(f.items_.size()==0)
- os << f.prefix_;
- else {
- if(f.cur_arg_ < f.num_args_)
- if( f.exceptions() & io::too_few_args_bit )
-
- boost::throw_exception(io::too_few_args(f.cur_arg_, f.num_args_));
- if(f.style_ & format_t::special_needs)
- os << f.str();
- else {
-
- os << f.prefix_;
- for(unsigned long i=0; i<f.items_.size(); ++i) {
- const typename format_t::format_item_t& item = f.items_[i];
- os << item.res_;
- os << item.appendix_;
- }
- }
- }
- f.dumped_=true;
- return os;
- }
- }
- #endif
|