Files
boost_smart_ptr/example/scoped_ptr_example_test.cpp
2003-09-12 17:09:29 +00:00

16 lines
354 B
C++

// Boost scoped_ptr_example_test main program -------------------------------//
// Copyright Beman Dawes 2001.
// See accompanying license for terms and conditions of use.
// See http://www.boost.org/libs/smart_ptr for documentation.
#include "scoped_ptr_example.hpp"
int main()
{
example my_example;
my_example.do_something();
return 0;
}