Public Member Functions

FbxIterator< FbxProperty > Class Template Reference

Search for all occurrences

Detailed Description

template<typename FbxProperty>
class FbxIterator< FbxProperty >

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

Definition at line 1198 of file fbxobject.h.

#include <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 1204 of file fbxobject.h.

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

{ mProperty = mObject->GetFirstProperty(); return mProperty; }
const FbxProperty& GetNext ( ) [inline]

Get next property of the object.

Returns:
The next property of the object.

Definition at line 1214 of file fbxobject.h.

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

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