FbxNameMapCompare Class Reference
 
 
 
FbxNameMapCompare Class Reference

#include <fbxpropertypage.h>


Class Description

Definition at line 28 of file fbxpropertypage.h.

List of all members.

Public Member Functions

int  operator() (const FbxNameMapKey &pKeyA, const FbxNameMapKey &pKeyB) const

Member Function Documentation

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

Definition at line 31 of file fbxpropertypage.h.

    {
        if( pKeyA.mFirst < pKeyB.mFirst )
            return -1;
        else if( pKeyA.mFirst > pKeyB.mFirst )
            return 1;

        return strcmp( pKeyA.mSecond, pKeyB.mSecond );
    }

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