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 1250 of file fbxobject.h.

List of all members.

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.

Constructor & Destructor Documentation

FbxIterator ( const FbxObject pObject ) [inline]

Constructor.

Parameters:
pObject The object whose properties are going to be iterated.

Definition at line 1256 of file fbxobject.h.

{ mProperty = mObject->GetFirstProperty(); return mProperty; }

Member Function Documentation

const FbxProperty& GetFirst ( ) [inline]

Get the first property of the object.

Returns:
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.

Returns:
The next property of the object.

Definition at line 1266 of file fbxobject.h.

:
        FbxProperty        mProperty;

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