Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/serialization/test/test_nvp.cpp @ 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.6 KB
Line 
1/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2// test_nvp.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// should pass compilation and execution
10
11#include <fstream>
12
13#include <cstdio> // remove
14#include <boost/config.hpp>
15#if defined(BOOST_NO_STDC_NAMESPACE)
16namespace std{ 
17    using ::remove;
18}
19#endif
20
21#include "test_tools.hpp"
22#include <boost/preprocessor/stringize.hpp>
23#include BOOST_PP_STRINGIZE(BOOST_ARCHIVE_TEST)
24
25#include <boost/serialization/nvp.hpp>
26
27#include "B.hpp"
28
29int test_main( int argc, char* argv[] )
30{
31    const char * testfile = boost::archive::tmpnam(NULL);
32    BOOST_REQUIRE(NULL != testfile);
33
34    B b, b1;
35
36    {   
37        test_ostream os(testfile, TEST_STREAM_FLAGS);
38        test_oarchive oa(os);
39        oa << BOOST_SERIALIZATION_NVP(b);
40    }
41    {
42        test_istream is(testfile, TEST_STREAM_FLAGS);
43        test_iarchive ia(is);
44        ia >> BOOST_SERIALIZATION_NVP(b1);
45    }
46    BOOST_CHECK(b == b1);
47
48    B *bptr = &b;
49    B *bptr1;
50
51    {   
52        test_ostream os(testfile, TEST_STREAM_FLAGS);
53        test_oarchive oa(os);
54        oa << BOOST_SERIALIZATION_NVP(bptr);
55    }
56    {
57        test_istream is(testfile, TEST_STREAM_FLAGS);
58        test_iarchive ia(is);
59        ia >> BOOST_SERIALIZATION_NVP(bptr1);
60    }
61    BOOST_CHECK(b == *bptr1);
62
63    std::remove(testfile);
64    return EXIT_SUCCESS;
65}
66
67// EOF
Note: See TracBrowser for help on using the repository browser.