mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-10-05 20:21:04 +02:00
19 lines
587 B
C++
19 lines
587 B
C++
// Boost scoped_ptr_example_test main program -------------------------------//
|
|
|
|
// (C) Copyright Beman Dawes 2001. Permission to copy,
|
|
// use, modify, sell and distribute this software is granted provided this
|
|
// copyright notice appears in all copies. This software is provided "as is"
|
|
// without express or implied warranty, and with no claim as to its
|
|
// suitability for any purpose.
|
|
|
|
// See http://www.boost.org for most recent version including documentation.
|
|
|
|
#include "scoped_ptr_example.hpp"
|
|
|
|
int main()
|
|
{
|
|
example my_example;
|
|
my_example.do_something();
|
|
return 0;
|
|
}
|