FBX C++ API Reference
All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 1069 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()

FbxIterator ( const FbxObject pObject)
inline

Constructor.

Parameters
pObjectThe object whose properties are going to be iterated.

Definition at line 1075 of file fbxobject.h.

1075 : mObject(pObject) {}

Member Function Documentation

◆ GetFirst()

const FbxProperty& GetFirst ( )
inline

Get the first property of the object.

Returns
The first property of the object.

Definition at line 1080 of file fbxobject.h.

1080 { mProperty = mObject->GetFirstProperty(); return mProperty; }
FbxProperty GetFirstProperty() const
Returns the first property of this object.
Definition: fbxobject.h:647

◆ GetNext()

const FbxProperty& GetNext ( )
inline

Get next property of the object.

Returns
The next property of the object.

Definition at line 1085 of file fbxobject.h.

1085 { 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:656

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