Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/serialization/test/test_polymorphic_A.hpp @ 29

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

updated boost from 1_33_1 to 1_34_1

File size: 1.1 KB
Line 
1/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2// test_polymorphic_A.hpp
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// class whose declaration is hidden by a pointer
10// #include <boost/serialization/scoped_ptr.hpp>
11
12#include <boost/archive/polymorphic_oarchive.hpp>
13#include <boost/archive/polymorphic_iarchive.hpp>
14
15class A;
16
17struct data {
18    // class a contains a pointer to a "hidden" declaration
19    // borland scoped_ptr doesn't work !!!
20    // boost::scoped_ptr<A> a;
21    A * a;
22//    template<class Archive>
23//    void serialize(Archive & ar, const unsigned int file_version);
24    void serialize(boost::archive::polymorphic_oarchive & ar, const unsigned int file_version);
25    void serialize(boost::archive::polymorphic_iarchive & ar, const unsigned int file_version);
26    data();
27    ~data();
28    bool operator==(const data & rhs) const;
29};
30
Note: See TracBrowser for help on using the repository browser.