Files
smart_ptr/example/shared_ptr_example2_test.cpp

23 lines
510 B
C++
Raw Permalink Normal View History

2001-05-24 18:43:24 +00:00
// Boost shared_ptr_example2_test main program ------------------------------//
2004-07-25 12:01:00 +00:00
// Copyright Beman Dawes 2001. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
2003-02-04 13:35:06 +00:00
// See http://www.boost.org/libs/smart_ptr for documentation.
2003-02-04 13:35:06 +00:00
2001-05-24 18:43:24 +00:00
#include "shared_ptr_example2.hpp"
int main()
{
example a;
a.do_something();
example b(a);
b.do_something();
example c;
c = a;
c.do_something();
return 0;
2002-01-19 15:54:28 +00:00
}