Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/boost/archive/binary_oarchive.hpp @ 56

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

updated boost from 1_33_1 to 1_34_1

File size: 1.7 KB
Line 
1#ifndef BOOST_ARCHIVE_BINARY_OARCHIVE_HPP
2#define BOOST_ARCHIVE_BINARY_OARCHIVE_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// binary_oarchive.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 <ostream>
20#include <boost/archive/binary_oarchive_impl.hpp>
21
22namespace boost { 
23namespace archive {
24
25// do not derive from this class.  If you want to extend this functionality
26// via inhertance, derived from binary_oarchive_impl instead.  This will
27// preserve correct static polymorphism.
28class binary_oarchive : 
29    public binary_oarchive_impl<
30        binary_oarchive, std::ostream::char_type, std::ostream::traits_type
31    >
32{
33public:
34    binary_oarchive(std::ostream & os, unsigned int flags = 0) :
35        binary_oarchive_impl<
36            binary_oarchive, std::ostream::char_type, std::ostream::traits_type
37        >(os, flags)
38    {}
39    binary_oarchive(std::streambuf & bsb, unsigned int flags = 0) :
40        binary_oarchive_impl<
41            binary_oarchive, std::ostream::char_type, std::ostream::traits_type
42        >(bsb, flags)
43    {}
44};
45
46} // namespace archive
47} // namespace boost
48
49// required by smart_cast for compilers not implementing
50// partial template specialization
51BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(boost::archive::binary_oarchive)
52
53#endif // BOOST_ARCHIVE_BINARY_OARCHIVE_HPP
Note: See TracBrowser for help on using the repository browser.