xtd 0.2.0
new_ptr.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "ptr.hpp"
6#include <utility>
7
9namespace xtd {
23 template<class type_t, class ...args_t>
24 ptr<type_t> new_ptr(args_t&& ... args) {return ptr<type_t> {new type_t(std::forward<args_t>(args)...)};}
25
27 template<class type_t>
28 ptr<type_t> new_ptr(const type_t& arg) {return ptr<type_t> {new type_t(arg)};}
29
30 template<class type_t>
31 ptr<type_t> new_ptr() {return ptr<type_t>(new type_t);}
33}
The xtd::shared_ptr_object is a shared pointer as std::shared_ptr.
Definition shared_ptr_object.hpp:30
ptr< type_t > new_ptr(args_t &&... args)
The xtd::new_ptr operator creates a xtd::ptr object.
Definition new_ptr.hpp:24
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10
Contains xtd::ptr type.