1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #ifndef BOOST_FORMAT_COMPAT_WORKAROUNDS_HPP
- #define BOOST_FORMAT_COMPAT_WORKAROUNDS_HPP
- namespace boost {
- namespace io {
-
-
- template<class Tr>
- class CompatTraits;
-
-
-
- template<class Alloc>
- class CompatAlloc;
- }
- }
- #include <boost/format/detail/config_macros.hpp>
-
- #if !defined(BOOST_FORMAT_STREAMBUF_DEFINED)
- #include <streambuf>
- #endif
- #if !defined(BOOST_FORMAT_OSTREAM_DEFINED)
- #include <ostream>
- #endif
- namespace boost {
- namespace io {
-
- template<class Tr>
- class CompatTraits
- {
- public:
- typedef Tr compatible_type;
- };
-
- template<class Alloc>
- class CompatAlloc
- {
- public:
- typedef Alloc compatible_type;
- };
- }
- }
- #endif
|