FbxIterator< FbxProperty > Class Template Reference

FbxIterator< FbxProperty > Class Template Reference

#include <fbxobject.h>

Class Description

template<typename FbxProperty>
class FbxIterator< FbxProperty >

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

Definition at line 1129 of file 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...
 

Constructor & Destructor Documentation

FbxIterator ( const FbxObject pObject)
inline

Constructor.

Parameters
pObjectThe object whose properties are going to be iterated.

Definition at line 1135 of file fbxobject.h.

1135 : 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 1140 of file fbxobject.h.

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

Get next property of the object.

Returns
The next property of the object.

Definition at line 1145 of file fbxobject.h.

1145 { 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:716

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