• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // 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 
main()12 int main()
13 {
14   example my_example;
15   my_example.do_something();
16   return 0;
17 }
18