Panda3D
|
This is the specialization of PointerToVoid for weak pointers. More...
#include <pandadoc.hpp>
Public Member Functions | |
bool | isValidPointer () |
Returns true if the pointer is not null and the object has not been deleted. More... | |
bool | wasDeleted () |
Returns true if the object we are pointing to has been deleted, false otherwise. More... | |
![]() | |
int | getHash () |
bool | isNull () |
Returns true if the PointerTo is a NULL pointer, false otherwise. More... | |
This is the specialization of PointerToVoid for weak pointers.
It needs an additional flag to indicate that the pointer has been deleted.
bool isValidPointer | ( | ) |
Returns true if the pointer is not null and the object has not been deleted.
See was_deleted() for caveats.
bool wasDeleted | ( | ) |
Returns true if the object we are pointing to has been deleted, false otherwise.
If this returns true, it means that the pointer can not yet be reused, but it does not guarantee that it can be safely accessed. See the lock() method for a safe way to access the underlying pointer.
This will always return true for a null pointer, unlike is_valid_pointer().