mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-10-04 19:51:02 +02:00
11 lines
195 B
C++
11 lines
195 B
C++
// Boost scoped_ptr_example_test main program -------------------------------//
|
|
|
|
#include "scoped_ptr_example.hpp"
|
|
|
|
int main()
|
|
{
|
|
example my_example;
|
|
my_example.do_something();
|
|
return 0;
|
|
}
|