os/ossrv/ossrv_pub/boost_apis/boost/archive/text_iarchive.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef BOOST_ARCHIVE_TEXT_IARCHIVE_HPP
sl@0
     2
#define BOOST_ARCHIVE_TEXT_IARCHIVE_HPP
sl@0
     3
sl@0
     4
// MS compatible compilers support #pragma once
sl@0
     5
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
     6
# pragma once
sl@0
     7
#endif
sl@0
     8
sl@0
     9
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
sl@0
    10
// text_iarchive.hpp
sl@0
    11
sl@0
    12
// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . 
sl@0
    13
// Use, modification and distribution is subject to the Boost Software
sl@0
    14
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
    15
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    16
sl@0
    17
//  See http://www.boost.org for updates, documentation, and revision history.
sl@0
    18
sl@0
    19
#include <istream>
sl@0
    20
sl@0
    21
#include <boost/archive/detail/auto_link_archive.hpp>
sl@0
    22
#include <boost/archive/basic_text_iprimitive.hpp>
sl@0
    23
#include <boost/archive/basic_text_iarchive.hpp>
sl@0
    24
sl@0
    25
#include <boost/archive/detail/abi_prefix.hpp> // must be the last header
sl@0
    26
sl@0
    27
namespace boost { 
sl@0
    28
namespace archive {
sl@0
    29
sl@0
    30
template<class Archive>
sl@0
    31
class text_iarchive_impl : 
sl@0
    32
    public basic_text_iprimitive<std::istream>,
sl@0
    33
    public basic_text_iarchive<Archive>
sl@0
    34
{
sl@0
    35
#ifdef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
sl@0
    36
public:
sl@0
    37
#else
sl@0
    38
    friend class detail::interface_iarchive<Archive>;
sl@0
    39
    friend class basic_text_iarchive<Archive>;
sl@0
    40
    friend class load_access;
sl@0
    41
protected:
sl@0
    42
#endif
sl@0
    43
    template<class T>
sl@0
    44
    void load(T & t){
sl@0
    45
        basic_text_iprimitive<std::istream>::load(t);
sl@0
    46
    }
sl@0
    47
    BOOST_ARCHIVE_DECL(void) 
sl@0
    48
    load(char * t);
sl@0
    49
    #ifndef BOOST_NO_INTRINSIC_WCHAR_T
sl@0
    50
    BOOST_ARCHIVE_DECL(void) 
sl@0
    51
    load(wchar_t * t);
sl@0
    52
    #endif
sl@0
    53
    BOOST_ARCHIVE_DECL(void) 
sl@0
    54
    load(std::string &s);
sl@0
    55
    #ifndef BOOST_NO_STD_WSTRING
sl@0
    56
    BOOST_ARCHIVE_DECL(void) 
sl@0
    57
    load(std::wstring &ws);
sl@0
    58
    #endif
sl@0
    59
    // note: the following should not needed - but one compiler (vc 7.1)
sl@0
    60
    // fails to compile one test (test_shared_ptr) without it !!!
sl@0
    61
    // make this protected so it can be called from a derived archive
sl@0
    62
    template<class T>
sl@0
    63
    void load_override(T & t, BOOST_PFTO int){
sl@0
    64
        basic_text_iarchive<Archive>::load_override(t, 0);
sl@0
    65
    }
sl@0
    66
    BOOST_ARCHIVE_DECL(void)
sl@0
    67
    load_override(class_name_type & t, int);
sl@0
    68
    BOOST_ARCHIVE_DECL(void)
sl@0
    69
    init();
sl@0
    70
    BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) 
sl@0
    71
    text_iarchive_impl(std::istream & is, unsigned int flags);
sl@0
    72
    BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) 
sl@0
    73
    ~text_iarchive_impl(){};
sl@0
    74
};
sl@0
    75
sl@0
    76
// do not derive from this class.  If you want to extend this functionality
sl@0
    77
// via inhertance, derived from text_iarchive_impl instead.  This will
sl@0
    78
// preserve correct static polymorphism.
sl@0
    79
class text_iarchive : 
sl@0
    80
    public text_iarchive_impl<text_iarchive>
sl@0
    81
{
sl@0
    82
public:
sl@0
    83
     
sl@0
    84
    text_iarchive(std::istream & is, unsigned int flags = 0) :
sl@0
    85
        text_iarchive_impl<text_iarchive>(is, flags)
sl@0
    86
    {}
sl@0
    87
    ~text_iarchive(){}
sl@0
    88
};
sl@0
    89
sl@0
    90
} // namespace archive
sl@0
    91
} // namespace boost
sl@0
    92
sl@0
    93
// required by smart_cast for compilers not implementing 
sl@0
    94
// partial template specialization
sl@0
    95
BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(boost::archive::text_iarchive)
sl@0
    96
sl@0
    97
#include <boost/archive/detail/abi_suffix.hpp> // pops abi_suffix.hpp pragmas
sl@0
    98
sl@0
    99
#endif // BOOST_ARCHIVE_TEXT_IARCHIVE_HPP