FBX C++ API Reference
FbxNameMapCompare Struct Reference

#include <fbxpropertypage.h>

Public Member Functions

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

Detailed Description

Definition at line 28 of file fbxpropertypage.h.

Member Function Documentation

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

Definition at line 30 of file fbxpropertypage.h.

31  {
32  if( pKeyA.mFirst < pKeyB.mFirst ) return -1;
33  else if( pKeyA.mFirst > pKeyB.mFirst ) return 1;
34  return strcmp(pKeyA.mSecond, pKeyB.mSecond);
35  }
Second mSecond
The second object in the pair.
Definition: fbxpair.h:57
First mFirst
The first object in the pair.
Definition: fbxpair.h:56

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