sl@0
|
1 |
//-----------------------------------------------------------------------------
|
sl@0
|
2 |
// boost variant.hpp header file
|
sl@0
|
3 |
// See http://www.boost.org for updates, documentation, and revision history.
|
sl@0
|
4 |
//-----------------------------------------------------------------------------
|
sl@0
|
5 |
//
|
sl@0
|
6 |
// Copyright (c) 2003
|
sl@0
|
7 |
// Eric Friedman, Itay Maman
|
sl@0
|
8 |
//
|
sl@0
|
9 |
// Distributed under the Boost Software License, Version 1.0. (See
|
sl@0
|
10 |
// accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
11 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
12 |
|
sl@0
|
13 |
#ifndef BOOST_VARIANT_HPP
|
sl@0
|
14 |
#define BOOST_VARIANT_HPP
|
sl@0
|
15 |
|
sl@0
|
16 |
// variant "main"
|
sl@0
|
17 |
#include "boost/variant/variant.hpp"
|
sl@0
|
18 |
#include "boost/variant/recursive_variant.hpp"
|
sl@0
|
19 |
#include "boost/variant/recursive_wrapper.hpp"
|
sl@0
|
20 |
|
sl@0
|
21 |
// common applications
|
sl@0
|
22 |
#include "boost/variant/get.hpp"
|
sl@0
|
23 |
#include "boost/variant/apply_visitor.hpp"
|
sl@0
|
24 |
#include "boost/variant/static_visitor.hpp"
|
sl@0
|
25 |
#include "boost/variant/visitor_ptr.hpp"
|
sl@0
|
26 |
|
sl@0
|
27 |
#endif // BOOST_VARIANT_HPP
|