Holds a pointer to an object which can optionally be deleted when this pointer goes out of scope. More...
#include <juce_OptionalScopedPointer.h>
Public Member Functions | |
OptionalScopedPointer () | |
Creates an empty OptionalScopedPointer. More... | |
OptionalScopedPointer (ObjectType *objectToHold, bool takeOwnership) | |
Creates an OptionalScopedPointer to point to a given object, and specifying whether the OptionalScopedPointer will delete it. More... | |
OptionalScopedPointer (OptionalScopedPointer &objectToTransferFrom) | |
Takes ownership of the object that another OptionalScopedPointer holds. More... | |
~OptionalScopedPointer () | |
The destructor may or may not delete the object that is being held, depending on the takeOwnership flag that was specified when the object was first passed into an OptionalScopedPointer constructor. More... | |
void | clear () |
Resets this pointer to null, possibly deleting the object that it holds, if it has ownership of it. More... | |
ObjectType * | get () const noexcept |
Returns the object that this pointer is managing. More... | |
operator ObjectType * () const noexcept | |
Returns the object that this pointer is managing. More... | |
ObjectType & | operator* () const noexcept |
Returns the object that this pointer is managing. More... | |
ObjectType * | operator-> () const noexcept |
Lets you access methods and properties of the object that this pointer is holding. More... | |
OptionalScopedPointer & | operator= (OptionalScopedPointer &objectToTransferFrom) |
Takes ownership of the object that another OptionalScopedPointer holds. More... | |
ObjectType * | release () noexcept |
Removes the current object from this OptionalScopedPointer without deleting it. More... | |
void | set (ObjectType *newObject, bool takeOwnership) |
Makes this OptionalScopedPointer point at a new object, specifying whether the OptionalScopedPointer will take ownership of the object. More... | |
void | setNonOwned (ObjectType *newObject) |
Makes this OptionalScopedPointer point at a new object, but will not take ownership of that object. More... | |
void | setOwned (ObjectType *newObject) |
Makes this OptionalScopedPointer point at a new object, and take ownership of that object. More... | |
void | swapWith (OptionalScopedPointer< ObjectType > &other) noexcept |
Swaps this object with another OptionalScopedPointer. More... | |
bool | willDeleteObject () const noexcept |
Returns true if the target object will be deleted when this pointer object is deleted. More... | |
Private Member Functions | |
void | setOwned (const ScopedPointer< ObjectType > &) JUCE_DELETED_FUNCTION |
Private Attributes | |
ScopedPointer< ObjectType > | object |
bool | shouldDelete |
Holds a pointer to an object which can optionally be deleted when this pointer goes out of scope.
This acts in many ways like a ScopedPointer, but allows you to specify whether or not the object is deleted.
|
inline |
Creates an empty OptionalScopedPointer.
|
inline |
Creates an OptionalScopedPointer to point to a given object, and specifying whether the OptionalScopedPointer will delete it.
If takeOwnership is true, then the OptionalScopedPointer will act like a ScopedPointer, deleting the object when it is itself deleted. If this parameter is false, then the OptionalScopedPointer just holds a normal pointer to the object, and won't delete it.
|
inline |
Takes ownership of the object that another OptionalScopedPointer holds.
Like a normal ScopedPointer, the objectToTransferFrom object will become null, as ownership of the managed object is transferred to this object.
The flag to indicate whether or not to delete the managed object is also copied from the source object.
|
inline |
The destructor may or may not delete the object that is being held, depending on the takeOwnership flag that was specified when the object was first passed into an OptionalScopedPointer constructor.
|
inline |
Resets this pointer to null, possibly deleting the object that it holds, if it has ownership of it.
Referenced by OptionalScopedPointer< OutputStream >::operator=(), OptionalScopedPointer< OutputStream >::set(), and OptionalScopedPointer< OutputStream >::~OptionalScopedPointer().
|
inlinenoexcept |
Returns the object that this pointer is managing.
|
inlinenoexcept |
Returns the object that this pointer is managing.
|
inlinenoexcept |
Returns the object that this pointer is managing.
|
inlinenoexcept |
Lets you access methods and properties of the object that this pointer is holding.
|
inline |
Takes ownership of the object that another OptionalScopedPointer holds.
Like a normal ScopedPointer, the objectToTransferFrom object will become null, as ownership of the managed object is transferred to this object.
The ownership flag that says whether or not to delete the managed object is also copied from the source object.
|
inlinenoexcept |
Removes the current object from this OptionalScopedPointer without deleting it.
This will return the current object, and set this OptionalScopedPointer to a null pointer.
|
inline |
Makes this OptionalScopedPointer point at a new object, specifying whether the OptionalScopedPointer will take ownership of the object.
If takeOwnership is true, then the OptionalScopedPointer will act like a ScopedPointer, deleting the object when it is itself deleted. If this parameter is false, then the OptionalScopedPointer just holds a normal pointer to the object, and won't delete it.
|
inline |
Makes this OptionalScopedPointer point at a new object, but will not take ownership of that object.
|
inline |
Makes this OptionalScopedPointer point at a new object, and take ownership of that object.
Referenced by StandalonePluginHolder::showAudioSettingsDialog().
|
private |
|
inlinenoexcept |
Swaps this object with another OptionalScopedPointer.
The two objects simply exchange their states.
|
inlinenoexcept |
Returns true if the target object will be deleted when this pointer object is deleted.
|
private |
Referenced by OptionalScopedPointer< OutputStream >::get(), OptionalScopedPointer< TextEditor::InputFilter >::operator TextEditor::InputFilter *(), OptionalScopedPointer< OutputStream >::operator*(), OptionalScopedPointer< OutputStream >::operator->(), and OptionalScopedPointer< OutputStream >::operator=().
|
private |