FbxCloneManager::ObjectCompare Class Reference
 
 
 
FbxCloneManager::ObjectCompare Class Reference

#include <fbxclonemanager.h>


Class Description

Functor to compare object pointers.

This class is used internally in FbxCloneManager.

Definition at line 106 of file fbxclonemanager.h.

List of all members.

Public Member Functions

int  operator() (FbxObject *const &pKeyA, FbxObject *const &pKeyB) const
  Operator converting instance to int type.

Member Function Documentation

int operator() ( FbxObject *const &  pKeyA,
FbxObject *const &  pKeyB 
) const [inline]

Operator converting instance to int type.

Parameters:
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);
        }

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