|
xtd
0.2.0
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
23 template<
class type_t,
class ...args_t>
24 shared_ptr_object<type_t>
new_shared_ptr_object(args_t&& ... args) {
return shared_ptr_object<type_t> {
new type_t(std::forward<args_t>(args)...)};}
39 template<
class type_t>
40 shared_ptr_object<type_t>
new_shared_ptr_object(
const type_t& arg) {
return shared_ptr_object<type_t> {
new type_t(arg)};}
55 template<
class type_t>
shared_ptr_object< type_t > new_shared_ptr_object()
xtd::new_shared_ptr_object operator creates a xtd::shared_ptr_object object.
Definition new_shared_ptr_object.hpp:56
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Contains xtd::shared_ptr_object class.