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