forked from boostorg/smart_ptr
10 lines
194 B
C++
10 lines
194 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;
|
|
} |