#include <fbxclonemanager.h>
Functor to compare object pointers.
This class is used internally in FbxCloneManager.
Definition at line 106 of file fbxclonemanager.h.
Public Member Functions |
|
| int | operator() (FbxObject *const &pKeyA, FbxObject *const &pKeyB) const |
| Operator converting instance to int type.
|
|
Operator converting instance to int type.
| pKeyA | Left key to be compared. |
| pKeyB | Right key to be compared. |
Definition at line 113 of file fbxclonemanager.h.
{
return (pKeyA < pKeyB) ? -1 : ((pKeyB < pKeyA) ? 1 : 0);
}