mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-10-05 04:01:04 +02:00
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;
|
||
|
}
|