Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/serialization/src/basic_pointer_oserializer.cpp @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 941 bytes
Line 
1/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2// basic_pointer_oserializer.cpp:
3
4// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
5// Use, modification and distribution is subject to the Boost Software
6// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8
9//  See http://www.boost.org for updates, documentation, and revision history.
10
11#define BOOST_ARCHIVE_SOURCE
12#include <boost/archive/detail/basic_pointer_oserializer.hpp>
13
14namespace boost {
15namespace archive {
16namespace detail {
17
18BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) 
19basic_pointer_oserializer::basic_pointer_oserializer(
20    const boost::serialization::extended_type_info & eti
21) :
22    basic_serializer(eti)
23{}
24
25BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) 
26basic_pointer_oserializer::~basic_pointer_oserializer() {}
27
28} // namespace detail
29} // namespace archive
30} // namespace boost
Note: See TracBrowser for help on using the repository browser.