fbxsdk/core/base/fbxpair.h Source File
         
    
Go to the documentation of this file.
   13 #ifndef _FBXSDK_CORE_BASE_PAIR_H_ 
   14 #define _FBXSDK_CORE_BASE_PAIR_H_ 
   22 template <
typename First, 
typename Second> 
class FbxPair 
FBX SDK environment definition. 
 
bool operator==(const FbxPair< First, Second > &pOther)
Comparison operator. 
 
This class template holds a pair of objects. 
 
FbxPair< First, Second > & operator=(const FbxPair< First, Second > &pOther)
Assignment operator. 
 
Second mSecond
The second object in the pair. 
 
FbxPair(const First &pFirst, const Second &pSecond)
Constructor. 
 
bool operator!=(const FbxPair< First, Second > &pOther)
Inverse comparison operator. 
 
First mFirst
The first object in the pair.