1 #ifndef BOOST_SERIALIZATION_LEVEL_HPP
2 #define BOOST_SERIALIZATION_LEVEL_HPP
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
12 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
13 // Use, modification and distribution is subject to the Boost Software
14 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15 // http://www.boost.org/LICENSE_1_0.txt)
17 // See http://www.boost.org for updates, documentation, and revision history.
19 #include <boost/config.hpp>
20 #include <boost/detail/workaround.hpp>
22 #include <boost/type_traits/is_fundamental.hpp>
23 #include <boost/type_traits/is_enum.hpp>
24 #include <boost/type_traits/is_array.hpp>
25 #include <boost/type_traits/is_class.hpp>
26 #include <boost/type_traits/is_base_and_derived.hpp>
28 #include <boost/mpl/eval_if.hpp>
29 #include <boost/mpl/int.hpp>
30 #include <boost/mpl/integral_c.hpp>
31 #include <boost/mpl/integral_c_tag.hpp>
32 #include <boost/mpl/aux_/nttp_decl.hpp>
34 #include <boost/serialization/level_enum.hpp>
37 namespace serialization
{
41 // default serialization implementation level
43 struct implementation_level
{
45 struct traits_class_level
{
46 typedef BOOST_DEDUCED_TYPENAME
U::level type
;
49 typedef mpl::integral_c_tag tag
;
50 // note: at least one compiler complained w/o the full qualification
51 // on basic traits below
53 BOOST_DEDUCED_TYPENAME
mpl::eval_if
<
54 is_base_and_derived
<boost::serialization::basic_traits
, T
>,
55 traits_class_level
<T
>,
57 BOOST_DEDUCED_TYPENAME
mpl::eval_if
<
59 mpl::int_
<primitive_type
>,
61 BOOST_DEDUCED_TYPENAME
mpl::eval_if
<
63 mpl::int_
<object_class_info
>,
65 BOOST_DEDUCED_TYPENAME
mpl::eval_if
<
67 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x560))
68 mpl::int_
<not_serializable
>,
70 mpl::int_
<object_serializable
>,
73 BOOST_DEDUCED_TYPENAME
mpl::eval_if
<
75 //#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x560))
76 // mpl::int_<not_serializable>,
78 mpl::int_
<primitive_type
>,
81 mpl::int_
<not_serializable
>
87 // vc 7.1 doesn't like enums here
88 BOOST_STATIC_CONSTANT(int, value
= implementation_level::type::value
);
92 template<class T
, BOOST_MPL_AUX_NTTP_DECL(int, L
) >
93 inline bool operator>=(implementation_level
<T
> t
, enum level_type l
)
95 return t
.value
>= (int)l
;
98 } // namespace serialization
101 // specify the level of serialization implementation for the class
102 // require that class info saved when versioning is used
103 #define BOOST_CLASS_IMPLEMENTATION(T, E) \
105 namespace serialization { \
107 struct implementation_level< T > \
109 typedef mpl::integral_c_tag tag; \
110 typedef mpl::int_< E > type; \
111 BOOST_STATIC_CONSTANT( \
113 value = implementation_level::type::value \
120 #endif // BOOST_SERIALIZATION_LEVEL_HPP