DART 6.10.1
|
TemplateWeakJointPtr is a templated class that enables users to create a non-reference-holding WeakJointPtr. More...
#include <JointPtr.hpp>
Public Member Functions | |
TemplateWeakJointPtr ()=default | |
Default constructor. | |
TemplateWeakJointPtr (JointT *_ptr) | |
Typical constructor. | |
template<class OtherJointT , class OtherBodyNodeT > | |
TemplateWeakJointPtr (const TemplateWeakJointPtr< OtherJointT, OtherBodyNodeT > &_weakPtr) | |
Constructor that takes in a WeakJointPtr. | |
template<class OtherJointT , class OtherBodyNodeT > | |
TemplateWeakJointPtr (const TemplateJointPtr< OtherJointT, OtherBodyNodeT > &_strongPtr) | |
Constructor that takes in a strong JointPtr. | |
TemplateWeakJointPtr & | operator= (JointT *_ptr) |
Assignment operator for raw Joint pointers. | |
template<class OtherJointT , class OtherBodyNodeT > | |
TemplateWeakJointPtr & | operator= (const TemplateWeakJointPtr< OtherJointT, OtherBodyNodeT > &_weakPtr) |
Assignment operator for WeakJointPtrs. | |
template<class OtherJointT , class OtherBodyNodeT > | |
TemplateWeakJointPtr & | operator= (const TemplateJointPtr< OtherJointT, OtherBodyNodeT > &_strongPtr) |
Assignment operator for strong JointPtrs. | |
TemplateJointPtr< JointT, BodyNodeT > | lock () const |
Locks the Joint reference to ensure that the referenced Joint is currently still available. | |
void | set (JointT *_ptr) |
Set the Joint for this WeakJointPtr. | |
template<class OtherJointT , class OtherBodyNodeT > | |
void | set (const TemplateWeakJointPtr< OtherJointT, OtherBodyNodeT > &_weakPtr) |
Set the Joint for this WeakJointPtr based on another WeakJointPtr. | |
Private Attributes | |
TemplateWeakBodyNodePtr< BodyNodeT > | mWeakBodyNode |
Weak poiner to the child BodyNode of this Joint. | |
Friends | |
template<class , class > | |
class | TemplateWeakJointPtr |
TemplateWeakJointPtr is a templated class that enables users to create a non-reference-holding WeakJointPtr.
Holding onto a WeakJointPtr will NOT prevent anything from getting deleted, but you can use lock() to check whether the Joint still exists. If it does exist, it will return a valid JointPtr. Otherwise it will return a nullptr JointPtr.
|
default |
Default constructor.
|
inline |
Typical constructor.
_ptr must be a valid pointer (or a nullptr) when passed to this constructor
|
inline |
Constructor that takes in a WeakJointPtr.
|
inline |
Constructor that takes in a strong JointPtr.
|
inline |
|
inline |
Assignment operator for strong JointPtrs.
|
inline |
Assignment operator for WeakJointPtrs.
|
inline |
Assignment operator for raw Joint pointers.
|
inline |
Set the Joint for this WeakJointPtr based on another WeakJointPtr.
|
inline |
Set the Joint for this WeakJointPtr.
|
friend |
|
private |