12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef BOOST_FORMAT_INTERNAL_FWD_HPP
- #define BOOST_FORMAT_INTERNAL_FWD_HPP
- #include <boost/format/format_fwd.hpp>
- #include <boost/config.hpp>
- namespace boost {
- namespace io {
- namespace detail {
- template<class Ch, class Tr> struct stream_format_state;
- template<class Ch, class Tr, class Alloc> struct format_item;
-
-
-
- template<class Ch, class Tr, class Alloc, class T>
- basic_format<Ch, Tr, Alloc>&
- modify_item_body (basic_format<Ch, Tr, Alloc>& self,
- int itemN, T manipulator);
- template<class Ch, class Tr, class Alloc, class T>
- basic_format<Ch, Tr, Alloc>&
- bind_arg_body (basic_format<Ch, Tr, Alloc>& self,
- int argN, const T& val);
-
- template<class Ch, class Tr, class T>
- void apply_manip_body (stream_format_state<Ch, Tr>& self,
- T manipulator);
-
- template<class Ch, class Tr, class Alloc, class T>
- void distribute (basic_format<Ch,Tr, Alloc>& self, T x);
- template<class Ch, class Tr, class Alloc, class T>
- basic_format<Ch, Tr, Alloc>&
- feed (basic_format<Ch,Tr, Alloc>& self, T x);
- template<class Ch, class Tr, class Alloc, class T>
- basic_format<Ch, Tr, Alloc>&
- feed_impl (basic_format<Ch,Tr, Alloc>& self, T x);
-
- }
- }
- }
- #endif
|