Definition at line 1322 of file fbxproperty.h.
#include <fbxproperty.h>
Public Types |
|
| enum | EType
{ eConnectRequest, eConnect, eConnected, eDisconnectRequest, eDisconnect, eDisconnected } |
| enum | EDirection { eSource, eDestination } |
Public Member Functions |
|
| FbxConnectEvent (EType pType, EDirection pDir, FbxProperty *pSrc, FbxProperty *pDst) | |
| EType | GetType () const |
| EDirection | GetDirection () const |
| FbxProperty & | GetSrc () const |
| FbxProperty & | GetDst () const |
| template<class T > | |
| T * | GetSrcIfObject (const T *) const |
| template<class T > | |
| T * | GetDstIfObject (const T *) const |
| enum EType |
Definition at line 1325 of file fbxproperty.h.
| enum EDirection |
Definition at line 1335 of file fbxproperty.h.
{
eSource,
eDestination
};
| FbxConnectEvent | ( | EType | pType, |
| EDirection | pDir, | ||
| FbxProperty * | pSrc, | ||
| FbxProperty * | pDst | ||
| ) | [inline] |
Definition at line 1341 of file fbxproperty.h.
:
mType(pType),
mDirection(pDir),
mSrc(pSrc),
mDst(pDst)
{
}
| EType GetType | ( | ) | const [inline] |
| EDirection GetDirection | ( | ) | const [inline] |
| FbxProperty& GetSrc | ( | ) | const [inline] |
| FbxProperty& GetDst | ( | ) | const [inline] |
| T* GetSrcIfObject | ( | const T * | ) | const [inline] |
Definition at line 1352 of file fbxproperty.h.
{ return mSrc->IsRoot() ? FbxCast<T>(mSrc->GetFbxObject()) : (T*)0; }
| T* GetDstIfObject | ( | const T * | ) | const [inline] |
Definition at line 1353 of file fbxproperty.h.
{ return mDst->IsRoot() ? FbxCast<T>(mDst->GetFbxObject()) : (T*)0; }