diff options
Diffstat (limited to 'example/smart_ptr_example/example.cc')
| -rw-r--r-- | example/smart_ptr_example/example.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/example/smart_ptr_example/example.cc b/example/smart_ptr_example/example.cc new file mode 100644 index 0000000..ef1a865 --- /dev/null +++ b/example/smart_ptr_example/example.cc @@ -0,0 +1,10 @@ +#include <ocl/crc_hash.hpp> +#include <ocl/print.hpp> +#include <ocl/smart_ptr.hpp> + +int main(int argc, char** argv) +{ + ocl::shared_ptr<std::ostream> smart = ocl::delete_ptr(&std::cout); + + return 0; +} |
