Sprout/sprout/variant/io.hpp

41 lines
1 KiB
C++
Raw Normal View History

2012-10-24 11:52:09 +00:00
#ifndef SPROUT_VARIANT_IO_HPP
#define SPROUT_VARIANT_IO_HPP
#include <sprout/config.hpp>
#include <sprout/variant/variant.hpp>
#include <sprout/variant/static_visitor.hpp>
namespace sprout {
namespace detail {
template<typename OStream>
class variant_output_visitor
: public sprout::static_visitor<>
{
public:
typedef OStream ostream_type;
private:
ostream_type& out_;
public:
explicit variant_output_visitor(ostream_type& out)
: out_(out)
{}
template<typename T>
void operator()(T const& operand) const {
out_ << operand;
}
};
} // namespace detail
//
// operator<<
//
template<typename Elem, typename Traits, typename... Types>
inline std::basic_ostream<Elem, Traits>&
operator<<(std::basic_ostream<Elem, Traits>& lhs, sprout::variant<Types...> const& rhs) {
2012-10-28 07:18:40 +00:00
sprout::detail::variant_output_visitor<std::basic_ostream<Elem, Traits> > visitor(lhs);
2012-10-24 11:52:09 +00:00
rhs.apply_visitor(visitor);
2012-10-28 07:18:40 +00:00
return lhs;
2012-10-24 11:52:09 +00:00
}
} // namespace sprout
#endif // #ifndef SPROUT_VARIANT_IO_HPP