FBX C++ API Reference
FbxIterator< FbxProperty > Class Template Reference

A utility class for iterating over the properties (FbxProperty) of any FbxObject. More...

#include <fbxobject.h>

Public Member Functions

 FbxIterator (const FbxObject *pObject)
 Constructor. More...
 
const FbxPropertyGetFirst ()
 Get the first property of the object. More...
 
const FbxPropertyGetNext ()
 Get next property of the object. More...
 

Detailed Description

template<typename FbxProperty>
class FbxIterator< FbxProperty >

A utility class for iterating over the properties (FbxProperty) of any FbxObject.

Definition at line 1074 of file fbxobject.h.

Constructor & Destructor Documentation

FbxIterator ( const FbxObject pObject)
inline

Constructor.

Parameters
pObjectThe object whose properties are going to be iterated.

Definition at line 1080 of file fbxobject.h.

1080 : mObject(pObject) {}

Member Function Documentation

const FbxProperty& GetFirst ( )
inline

Get the first property of the object.

Returns
The first property of the object.

Definition at line 1085 of file fbxobject.h.

1085 { mProperty = mObject->GetFirstProperty(); return mProperty; }
FbxProperty GetFirstProperty() const
Returns the first property of this object.
Definition: fbxobject.h:652
const FbxProperty& GetNext ( )
inline

Get next property of the object.

Returns
The next property of the object.

Definition at line 1090 of file fbxobject.h.

1090 { mProperty = mObject->GetNextProperty(mProperty); return mProperty; }
FbxProperty GetNextProperty(const FbxProperty &pProperty) const
Returns the next property of this object that follows the specified property.
Definition: fbxobject.h:661

The documentation for this class was generated from the following file: