1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
#include "CondFormats/Serialization/interface/eos/portable_iarchive.hpp"
#include "CondFormats/Serialization/interface/eos/portable_oarchive.hpp"
#ifndef NO_EXPLICIT_TEMPLATE_INSTANTIATION
#include <boost/archive/impl/basic_binary_iarchive.ipp>
#include <boost/archive/impl/basic_binary_iprimitive.ipp>
#if BOOST_VERSION < 104000
#include <boost/archive/impl/archive_pointer_iserializer.ipp>
#elif !defined BOOST_ARCHIVE_SERIALIZER_INCLUDED
#include <boost/archive/impl/archive_serializer_map.ipp>
#define BOOST_ARCHIVE_SERIALIZER_INCLUDED
#endif
namespace boost {
namespace archive {
// explicitly instantiate for this type of binary stream
template class basic_binary_iarchive<eos::portable_iarchive>;
template class basic_binary_iprimitive<eos::portable_iarchive
#if BOOST_VERSION < 103400
,
std::istream
#else
,
std::istream::char_type,
std::istream::traits_type
#endif
>;
#if BOOST_VERSION < 104000
template class detail::archive_pointer_iserializer<eos::portable_iarchive>;
#else
template class detail::archive_serializer_map<eos::portable_iarchive>;
template class detail::archive_serializer_map<eos::polymorphic_portable_iarchive>;
#endif
} // namespace archive
} // namespace boost
#endif
#ifndef NO_EXPLICIT_TEMPLATE_INSTANTIATION
#include <boost/archive/impl/basic_binary_oarchive.ipp>
#include <boost/archive/impl/basic_binary_oprimitive.ipp>
#if BOOST_VERSION < 104000
#include <boost/archive/impl/archive_pointer_oserializer.ipp>
#elif !defined BOOST_ARCHIVE_SERIALIZER_INCLUDED
#include <boost/archive/impl/archive_serializer_map.ipp>
#define BOOST_ARCHIVE_SERIALIZER_INCLUDED
#endif
namespace boost {
namespace archive {
// explicitly instantiate for this type of binary stream
template class basic_binary_oarchive<eos::portable_oarchive>;
template class basic_binary_oprimitive<eos::portable_oarchive
#if BOOST_VERSION < 103400
,
std::ostream
#else
,
std::ostream::char_type,
std::ostream::traits_type
#endif
>;
#if BOOST_VERSION < 104000
template class detail::archive_pointer_oserializer<eos::portable_oarchive>;
#else
template class detail::archive_serializer_map<eos::portable_oarchive>;
template class detail::archive_serializer_map<eos::polymorphic_portable_oarchive>;
#endif
} // namespace archive
} // namespace boost
#endif
|