#include <fbxobject.h>
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 1590 of file 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 1597 of file fbxobject.h.
: FbxIteratorDstBase(pProperty,Type::ClassId) {}
| FbxIteratorDst | ( | FbxProperty & | pProperty | ) | [inline] |
Constructor.
| pProperty | Property object. The iterator will iterate destination objects that connect to it. |
Definition at line 1603 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetFirst(); }
| Type* GetFirst | ( | ) | [inline] |
Get the first destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1609 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetNext(); }
| Type* GetNext | ( | ) | [inline] |
Get next destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1615 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetSafeNext(); }
| Type* GetSafeNext | ( | ) | [inline] |
Get next destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1622 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetLast(); }
| Type* GetLast | ( | ) | [inline] |
Get the last destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1628 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetPrevious(); }
| Type* GetPrevious | ( | ) | [inline] |
Get previous destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1634 of file fbxobject.h.
{ return (Type*)FbxIteratorDstBase::GetSafePrevious(); }
| Type* GetSafePrevious | ( | ) | [inline] |
Get previous destination object that connects to the property or object.
Reimplemented from FbxIteratorDstBase.
Definition at line 1642 of file fbxobject.h.
{