forked from boostorg/smart_ptr
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;
|
|
}
|