scoped_ptr_example_test.cpp 449 B

1234567891011121314151617
  1. // Boost scoped_ptr_example_test main program -------------------------------//
  2. // Copyright Beman Dawes 2001. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/smart_ptr for documentation.
  6. #include "scoped_ptr_example.hpp"
  7. int main()
  8. {
  9. example my_example;
  10. my_example.do_something();
  11. return 0;
  12. }