blob: 26b3a18101aa65dec95c60420d4b0377c51afc36 [file] [log] [blame]
Brian Silverman355f11d2018-08-04 23:57:00 -07001// Boost scoped_ptr_example_test main program -------------------------------//
2
3// Copyright Beman Dawes 2001. Distributed under the Boost
4// Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7
8// See http://www.boost.org/libs/smart_ptr for documentation.
9
10#include "scoped_ptr_example.hpp"
11
12int main()
13{
14 example my_example;
15 my_example.do_something();
16 return 0;
17}