#include <fbxanimutilities.h>
Definition at line 84 of file fbxanimutilities.h.
Public Member Functions |
|
| CurveNodeIntfce (void *pData) | |
| ~CurveNodeIntfce () | |
| FbxHandle | GetHandle () |
| char * | GetTimeWarpName () const |
| CurveNodeIntfce | GetTimeWarp () |
| CurveNodeIntfce | GetLayer (int pId) |
| int | GetCount () |
| void * | GetHandle (unsigned int pId) |
| void * | GetCurveHandle (int pId=-1) |
| void | SetCurveHandle (void *pCurveHandle, int pId=-1) |
| CurveNodeIntfce | FindRecursive (const char *pName) |
| bool | IsValid () |
| CurveNodeIntfce & | operator= (CurveNodeIntfce &lRhs) |
| bool | operator== (CurveNodeIntfce &lRhs) |
Friends |
|
| class | FbxAnimUtilities |
| CurveNodeIntfce | ( | void * | pData | ) |
| ~CurveNodeIntfce | ( | ) |
| FbxHandle GetHandle | ( | ) |
| char* GetTimeWarpName | ( | ) | const |
| CurveNodeIntfce GetTimeWarp | ( | ) |
| CurveNodeIntfce GetLayer | ( | int | pId | ) |
| int GetCount | ( | ) |
| void* GetHandle | ( | unsigned int | pId | ) |
| void* GetCurveHandle | ( | int | pId = -1 |
) |
| void SetCurveHandle | ( | void * | pCurveHandle, |
| int | pId = -1 |
||
| ) |
| CurveNodeIntfce FindRecursive | ( | const char * | pName | ) |
| bool IsValid | ( | ) | [inline] |
Definition at line 104 of file fbxanimutilities.h.
{ return mImp != NULL; }
| CurveNodeIntfce& operator= | ( | CurveNodeIntfce & | lRhs | ) | [inline] |
Definition at line 105 of file fbxanimutilities.h.
{
mImp = lRhs.mImp;
return *this;
}
| bool operator== | ( | CurveNodeIntfce & | lRhs | ) | [inline] |
Definition at line 111 of file fbxanimutilities.h.
{
return (mImp == lRhs.mImp);
}
friend class FbxAnimUtilities
[friend] |
Definition at line 117 of file fbxanimutilities.h.