Sprout/sprout/variant.hpp

27 lines
1.1 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_VARIANT_HPP
#define SPROUT_VARIANT_HPP
#include <sprout/config.hpp>
2013-02-04 16:02:59 +00:00
#include <sprout/variant/variant_fwd.hpp>
#include <sprout/variant/variant.hpp>
2012-10-24 11:52:09 +00:00
#include <sprout/variant/io.hpp>
#include <sprout/variant/tuple.hpp>
#include <sprout/variant/get.hpp>
#include <sprout/variant/hash.hpp>
2013-02-04 16:02:59 +00:00
#include <sprout/variant/type_traits.hpp>
#include <sprout/variant/static_visitor.hpp>
2012-12-19 15:09:05 +00:00
#include <sprout/variant/static_variant_visitor.hpp>
#include <sprout/variant/as_visitor.hpp>
2012-12-19 16:06:50 +00:00
#include <sprout/variant/as_variant_visitor.hpp>
2012-12-19 15:09:05 +00:00
#include <sprout/variant/visitor_result.hpp>
#include <sprout/variant/apply_visitor.hpp>
#endif // #ifndef SPROUT_VARIANT_HPP