Ptr.Ptr Constructors
This element is not available using the selected API.
This element is not available using the selected API.
In this article
Initializes a new instance of the Ptr class.
Name | Description | |
---|---|---|
Public method | Ptr() | Initializes a new empty instance of the Ptr class. |
Public method | Ptr(const Ptr<T>& p) | Initializes a new instance of the Ptr class that points to the same instance as the specified smart pointer. |
Public method | Ptr(T* p) | Initializes a new instance of the Ptr class with the specified pointer. |
Public method | Ptr(const Ptr<U>& p) | Initializes a new instance of the Ptr class from another smart pointer. |
Ptr();
Ptr( const Ptr& p );
Ptr( T* p );
template<class U> Ptr( const Ptr<U>& p );
Windows, Linux, Android
In this article
This element is not available using the selected API.
In this article
This element is not available using the selected API.
In this article