Public Member Functions

KFbxIterator< KFbxProperty > Class Template Reference

Search for all occurrences

Detailed Description

template<typename KFbxProperty>
class KFbxIterator< KFbxProperty >

A utility class for iterating over the properties (KFbxProperty) of any KFbxObject.

Definition at line 1261 of file kfbxobject.h.

#include <kfbxobject.h>

List of all members.

Public Member Functions

  KFbxIterator (KFbxObject const *pObject)
  Constructor.
KFbxProperty const &  GetFirst ()
  Get the first property of the object.
KFbxProperty const &  GetNext ()
  Get next property of the object.

Constructor & Destructor Documentation

KFbxIterator ( KFbxObject const *  pObject ) [inline]

Constructor.

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

Definition at line 1267 of file kfbxobject.h.

: mObject(pObject) {}

Member Function Documentation

KFbxProperty const& GetFirst ( ) [inline]

Get the first property of the object.

Returns:
The first property of the object.

Definition at line 1272 of file kfbxobject.h.

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

Get next property of the object.

Returns:
The next property of the object.

Definition at line 1277 of file kfbxobject.h.

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

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