Files
smart_ptr/example/scoped_ptr_example_test.cpp

16 lines
354 B
C++
Raw Normal View History

// Boost scoped_ptr_example_test main program -------------------------------//
// Copyright Beman Dawes 2001.
// See accompanying license for terms and conditions of use.
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
#include "scoped_ptr_example.hpp"
int main()
{
example my_example;
my_example.do_something();
return 0;
2002-01-19 15:54:28 +00:00
}