]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/tti/test/test_has_union.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / tti / test / test_has_union.hpp
1
2 // (C) Copyright Edward Diener 2019
3 // Use, modification and distribution are subject to the Boost Software License,
4 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt).
6
7 #if !defined(TEST_HAS_UNION_HPP)
8 #define TEST_HAS_UNION_HPP
9
10 #include "test_structs.hpp"
11 #include <boost/tti/has_union.hpp>
12
13 BOOST_TTI_HAS_UNION(AnIntType)
14 BOOST_TTI_TRAIT_HAS_UNION(NameStruct,AStructType)
15 BOOST_TTI_HAS_UNION(AnIntTypeReference)
16 BOOST_TTI_HAS_UNION(BType)
17 BOOST_TTI_TRAIT_HAS_UNION(TheInteger,AnIntegerType)
18 BOOST_TTI_HAS_UNION(CType)
19 BOOST_TTI_HAS_UNION(AnotherIntegerType)
20 BOOST_TTI_TRAIT_HAS_UNION(SomethingElse,someOtherType)
21 BOOST_TTI_HAS_UNION(NoOtherType)
22
23 BOOST_TTI_HAS_UNION(CTypeUnion)
24 BOOST_TTI_TRAIT_HAS_UNION(SimpleUT,AnUnion)
25 BOOST_TTI_HAS_UNION(AnotherUnion)
26
27 BOOST_TTI_TRAIT_HAS_UNION(EInB,BTypeEnum)
28 BOOST_TTI_HAS_UNION(AnEnumTtype)
29 BOOST_TTI_TRAIT_HAS_UNION(AnotherE,AnotherEnumTtype)
30 BOOST_TTI_TRAIT_HAS_UNION(EClass,AnEnumClassType)
31 BOOST_TTI_HAS_UNION(AnotherEnumClassType)
32
33 BOOST_TTI_HAS_UNION(InnerUnion)
34
35 #endif // TEST_HAS_UNION_HPP