#include <fbxobject.h>
A utility class for iterating over the properties (FbxProperty) of any FbxObject.
Definition at line 1250 of file fbxobject.h.
Public Member Functions |
|
| FbxIterator (const FbxObject *pObject) | |
| Constructor. |
|
| const FbxProperty & | GetFirst () |
| Get the first property of the object.
|
|
| const FbxProperty & | GetNext () |
| Get next property of the object. |
|
| FbxIterator | ( | const FbxObject * | pObject | ) | [inline] |
Constructor.
| pObject | The object whose properties are going to be iterated. |
Definition at line 1256 of file fbxobject.h.
{ mProperty = mObject->GetFirstProperty(); return mProperty; }
| const FbxProperty& GetFirst | ( | ) | [inline] |
Get the first property of the object.
Definition at line 1261 of file fbxobject.h.
{ mProperty = mObject->GetNextProperty(mProperty); return mProperty; }
| const FbxProperty& GetNext | ( | ) | [inline] |
Get next property of the object.
Definition at line 1266 of file fbxobject.h.
:
FbxProperty mProperty;