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