A utility class for iterating over destination objects that connect to property (FbxProperty) or object (FbxObject).
The class is a wrapper of FbxIteratorDstBase with template.
Definition at line 1548 of file fbxobject.h.
#include <fbxobject.h>

Public Member Functions |
|
| FbxIteratorDst (FbxObject *pObject) | |
| Constructor. |
|
| FbxIteratorDst (FbxProperty &pProperty) | |
| Constructor. |
|
| Type * | GetFirst () |
| Get the first destination object that
connects to the property or object. |
|
| Type * | GetNext () |
| Get next destination object that connects to
the property or object. |
|
| Type * | GetSafeNext () |
| Get next destination object that connects to
the property or object. |
|
| Type * | GetLast () |
| Get the last destination object that
connects to the property or object. |
|
| Type * | GetPrevious () |
| Get previous destination object that
connects to the property or object. |
|
| Type * | GetSafePrevious () |
| Get previous destination object that
connects to the property or object. |
|
| FbxIteratorDst | ( | FbxObject * | pObject | ) | [inline] |
Constructor.
| pObject | FBX object. The iterator will iterate destination objects that connect to it. |
Definition at line 1555 of file fbxobject.h.
: FbxIteratorDstBase(pObject,Type::ClassId) {}
| FbxIteratorDst | ( | FbxProperty & | pProperty | ) | [inline] |
Constructor.
| pProperty | Property object. The iterator will iterate destination objects that connect to it. |
Definition at line 1561 of file fbxobject.h.
: FbxIteratorDstBase(pProperty,Type::ClassId) {}
| Type* GetFirst | ( | ) | [inline] |
Get the first destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1567 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetFirst(); }
| Type* GetNext | ( | ) | [inline] |
Get next destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1573 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetNext(); }
| Type* GetSafeNext | ( | ) | [inline] |
Get next destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1580 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetSafeNext(); }
| Type* GetLast | ( | ) | [inline] |
Get the last destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1586 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetLast(); }
| Type* GetPrevious | ( | ) | [inline] |
Get previous destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1592 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetPrevious(); }
| Type* GetSafePrevious | ( | ) | [inline] |
Get previous destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1600 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetSafePrevious(); }