#include <fbxmap.h>
Public Member Functions |
|
| FbxRedBack_IteratorType () | |
| FbxRedBack_IteratorType (RecordType *pRecord) | |
| FbxRedBack_IteratorType (const FbxRedBack_IteratorType< RecordType > &pV) | |
| FbxRedBack_IteratorType & | operator++ () |
| const FbxRedBack_IteratorType | operator++ (int) |
| FbxRedBack_IteratorType & | operator-- () |
| const FbxRedBack_IteratorType | operator-- (int) |
| const RecordType & | operator* () const |
| RecordType & | operator* () |
| const RecordType * | operator-> () const |
| RecordType * | operator-> () |
| bool | operator== (const FbxRedBack_IteratorType &pOther) const |
| bool | operator!= (const FbxRedBack_IteratorType &pOther) const |
Protected Attributes |
|
| RecordType * | mRecord |
Friends |
|
| class | FbxRedBack_ConstIteratorType< RecordType > |
| FbxRedBack_IteratorType | ( | ) | [inline] |
| FbxRedBack_IteratorType | ( | RecordType * | pRecord | ) | [inline] |
| FbxRedBack_IteratorType | ( | const FbxRedBack_IteratorType< RecordType > & | pV | ) | [inline] |
| FbxRedBack_IteratorType& operator++ | ( | ) | [inline] |
| const FbxRedBack_IteratorType operator++ | ( | int | ) | [inline] |
Definition at line 74 of file fbxmap.h.
{
FbxRedBack_IteratorType t(*this);
operator++();
return t;
}
| FbxRedBack_IteratorType& operator-- | ( | ) | [inline] |
| const FbxRedBack_IteratorType operator-- | ( | int | ) | [inline] |
Definition at line 90 of file fbxmap.h.
{
FbxRedBack_IteratorType t(*this);
operator--();
return t;
}
| const RecordType& operator* | ( | ) | const [inline] |
Definition at line 97 of file fbxmap.h.
{
FBX_ASSERT( mRecord );
return *mRecord;
}
| RecordType& operator* | ( | ) | [inline] |
Definition at line 104 of file fbxmap.h.
{
FBX_ASSERT( mRecord );
return *mRecord;
}
| const RecordType* operator-> | ( | ) | const [inline] |
Definition at line 111 of file fbxmap.h.
{
FBX_ASSERT( mRecord );
return mRecord;
}
| RecordType* operator-> | ( | ) | [inline] |
Definition at line 118 of file fbxmap.h.
{
FBX_ASSERT( mRecord );
return mRecord;
}
| bool operator== | ( | const FbxRedBack_IteratorType< RecordType > & | pOther | ) | const [inline] |
| bool operator!= | ( | const FbxRedBack_IteratorType< RecordType > & | pOther | ) | const [inline] |
friend class FbxRedBack_ConstIteratorType<
RecordType > [friend] |
RecordType*
mRecord [protected] |