2011-11-06 10:56:57 +09:00
|
|
|
#ifndef SPROUT_VARIANT_HPP
|
|
|
|
#define SPROUT_VARIANT_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2013-02-05 01:02:59 +09:00
|
|
|
#include <sprout/variant/variant_fwd.hpp>
|
2011-11-06 10:56:57 +09:00
|
|
|
#include <sprout/variant/variant.hpp>
|
2012-10-24 20:52:09 +09:00
|
|
|
#include <sprout/variant/io.hpp>
|
2012-10-05 01:53:39 +09:00
|
|
|
#include <sprout/variant/tuple.hpp>
|
2011-11-06 10:56:57 +09:00
|
|
|
#include <sprout/variant/get.hpp>
|
2013-02-04 10:24:23 +09:00
|
|
|
#include <sprout/variant/hash.hpp>
|
2013-02-05 01:02:59 +09:00
|
|
|
#include <sprout/variant/type_traits.hpp>
|
2011-11-12 20:24:42 +09:00
|
|
|
#include <sprout/variant/static_visitor.hpp>
|
2012-12-20 00:09:05 +09:00
|
|
|
#include <sprout/variant/static_variant_visitor.hpp>
|
2012-12-21 22:35:48 +09:00
|
|
|
#include <sprout/variant/as_visitor.hpp>
|
2012-12-20 01:06:50 +09:00
|
|
|
#include <sprout/variant/as_variant_visitor.hpp>
|
2012-12-20 00:09:05 +09:00
|
|
|
#include <sprout/variant/visitor_result.hpp>
|
2011-11-12 20:24:42 +09:00
|
|
|
#include <sprout/variant/apply_visitor.hpp>
|
2011-11-06 10:56:57 +09:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_VARIANT_HPP
|