Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/boost/archive/polymorphic_xml_iarchive.hpp @ 47

Last change on this file since 47 was 29, checked in by landauf, 16 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.2 KB
Line 
1#ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP
2#define BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP
3
4// MS compatible compilers support #pragma once
5#if defined(_MSC_VER) && (_MSC_VER >= 1020)
6# pragma once
7#endif
8
9/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10// polymorphic_xml_iarchive.hpp
11
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)
16
17//  See http://www.boost.org for updates, documentation, and revision history.
18
19#include <boost/config.hpp>
20#include <boost/archive/xml_iarchive.hpp>
21#include <boost/archive/detail/polymorphic_iarchive_impl.hpp>
22
23namespace boost { 
24namespace archive {
25
26typedef detail::polymorphic_iarchive_impl<
27        xml_iarchive_impl<xml_iarchive> 
28> polymorphic_xml_iarchive;
29
30} // namespace archive
31} // namespace boost
32
33// required by smart_cast for compilers not implementing
34// partial template specialization
35BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(
36    boost::archive::polymorphic_xml_iarchive
37)
38
39#endif // BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP
40
Note: See TracBrowser for help on using the repository browser.