FbxStringCompare Class Reference
 
 
 
FbxStringCompare Class Reference

#include <fbxstring.h>


Class Description

Functor class to compare FbxString, and is suitable for use in FbxMap.

Definition at line 471 of file fbxstring.h.

List of all members.

Public Member Functions

int  operator() (const FbxString &pKeyA, const FbxString &pKeyB) const
  Compare two KStrings.

Member Function Documentation

int operator() ( const FbxString pKeyA,
const FbxString pKeyB 
) const [inline]

Compare two KStrings.

Parameters:
pKeyA The first FbxString to compare.
pKeyB The second FbxString to compare.
Returns:
-1 indicates pKeyA is greater than pKeyB, 1 indicates pKeyB is greater than pKeyA, zero indicates they are equal.

Definition at line 479 of file fbxstring.h.

        {
                return (pKeyA < pKeyB) ? -1 : ((pKeyB < pKeyA) ? 1 : 0);
        }

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