blob: 2178328973478d8d122688b47520d76f6b6a088c [file] [log] [blame]
Brian Silverman1f5d3982018-08-04 23:37:52 -07001//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright David Abrahams, Vicente Botet, Ion Gaztanaga 2009.
4// Distributed under the Boost Software License, Version 1.0.
5// (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt)
7//
8// See http://www.boost.org/libs/move for documentation.
9//
10//////////////////////////////////////////////////////////////////////////////
11#include <boost/move/detail/config_begin.hpp>
12#include <boost/move/algorithm.hpp>
13#include <boost/container/vector.hpp>
14#include "../example/movable.hpp"
15
16int main()
17{
18 namespace bc = ::boost::container;
19 //Default construct 10 movable objects
20 bc::vector<movable> v(10);
21 bc::vector<movable> v2(10);
22
23 //Move to v2
24 boost::move(v.begin(), v.end(), v2.begin());
25
26 //Test values have been moved
27 if(!v[0].moved()){
28 return 1;
29 }
30
31 if(v2.size() != 10){
32 return 1;
33 }
34
35 if(v2[0].moved()){
36 return 1;
37 }
38
39 //Move to v again
40 boost::move_backward(v2.begin(), v2.end(), v.end());
41
42 //Test values have been moved
43 if(!v2[1].moved()){
44 return 1;
45 }
46
47 if(v.size() != 10){
48 return 1;
49 }
50
51 if(v[1].moved()){
52 return 1;
53 }
54
55 return 0;
56}
57
58#include <boost/move/detail/config_end.hpp>