2011-11-06 01:56:57 +00:00
|
|
|
#ifndef SPROUT_VARIANT_HPP
|
|
|
|
#define SPROUT_VARIANT_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/variant/variant.hpp>
|
2012-10-24 11:52:09 +00:00
|
|
|
#include <sprout/variant/io.hpp>
|
2012-10-04 16:53:39 +00:00
|
|
|
#include <sprout/variant/tuple.hpp>
|
2011-11-06 01:56:57 +00:00
|
|
|
#include <sprout/variant/get.hpp>
|
2013-02-04 01:24:23 +00:00
|
|
|
#include <sprout/variant/hash.hpp>
|
2011-11-12 11:24:42 +00:00
|
|
|
#include <sprout/variant/static_visitor.hpp>
|
2012-12-19 15:09:05 +00:00
|
|
|
#include <sprout/variant/static_variant_visitor.hpp>
|
2012-12-21 13:35:48 +00:00
|
|
|
#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>
|
2011-11-12 11:24:42 +00:00
|
|
|
#include <sprout/variant/apply_visitor.hpp>
|
2011-11-06 01:56:57 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_VARIANT_HPP
|