#include <fbxobject.h>
A utility class for iterating over source objects that connect to property (FbxProperty) or object (FbxObject).
The class is a wrapper of FbxIteratorSrcBase with template.
Definition at line 1401 of file fbxobject.h.
Public Member Functions |
|
| FbxIteratorSrc (FbxObject *pObject) | |
| Constructor. |
|
| FbxIteratorSrc (FbxProperty &pProperty) | |
| Constructor. |
|
| Type * | GetFirst () |
| Get the first source object that connects to
the property or object. |
|
| Type * | GetNext () |
| Get next source object that connects to the
property or object. |
|
| Type * | GetSafeNext () |
| Get next source object that connects to the
property or object. |
|
| Type * | GetLast () |
| Get the last source object that connects to
the property or object. |
|
| Type * | GetPrevious () |
| Get previous source object that connects to
the property or object. |
|
| Type * | GetSafePrevious () |
| Get previous source object that connects to
the property or object. |
|
| FbxIteratorSrc | ( | FbxObject * | pObject | ) | [inline] |
Constructor.
| pObject | FBX object. The iterator will iterate source objects that connect to it. |
Definition at line 1408 of file fbxobject.h.
: FbxIteratorSrcBase(pProperty,Type::ClassId) {}
| FbxIteratorSrc | ( | FbxProperty & | pProperty | ) | [inline] |
Constructor.
| pProperty | Property object. The iterator will iterate source objects that connect to it. |
Definition at line 1414 of file fbxobject.h.
{ return (Type*)FbxIteratorSrcBase::GetFirst(); }
| Type* GetFirst | ( | ) | [inline] |
Get the first source object that connects to the property or object.
Reimplemented from FbxIteratorSrcBase.
Definition at line 1420 of file fbxobject.h.
{ return (Type*)FbxIteratorSrcBase::GetNext(); }
| Type* GetNext | ( | ) | [inline] |
Get next source object that connects to the property or object.
Reimplemented from FbxIteratorSrcBase.
Definition at line 1426 of file fbxobject.h.
{ return (Type*)FbxIteratorSrcBase::GetSafeNext(); }
| Type* GetSafeNext | ( | ) | [inline] |
Get next source object that connects to the property or object.
Reimplemented from FbxIteratorSrcBase.
Definition at line 1433 of file fbxobject.h.
{ return (Type*)FbxIteratorSrcBase::GetLast(); }
| Type* GetLast | ( | ) | [inline] |
Get the last source object that connects to the property or object.
Reimplemented from FbxIteratorSrcBase.
Definition at line 1439 of file fbxobject.h.
{ return (Type*)FbxIteratorSrcBase::GetPrevious(); }
| Type* GetPrevious | ( | ) | [inline] |
Get previous source object that connects to the property or object.
Reimplemented from FbxIteratorSrcBase.
Definition at line 1446 of file fbxobject.h.
{ return (Type*)FbxIteratorSrcBase::GetSafePrevious(); }
| Type* GetSafePrevious | ( | ) | [inline] |
Get previous source object that connects to the property or object.
Reimplemented from FbxIteratorSrcBase.
Definition at line 1454 of file fbxobject.h.
{