Definition at line 1705 of file fbxobject.h.
#include <fbxobject.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 |
| template<class T > | |
| T * | GetDstIfObject () const |
| enum EType |
Definition at line 1708 of file fbxobject.h.
{
| enum EDirection |
Definition at line 1718 of file fbxobject.h.
:
mType(pType),
| FbxConnectEvent | ( | EType | pType, |
| EDirection | pDir, | ||
| FbxProperty * | pSrc, | ||
| FbxProperty * | pDst | ||
| ) | [inline] |
Definition at line 1724 of file fbxobject.h.
{
}
inline EType GetType() const { return mType; }
inline EDirection GetDirection() const { return mDirection; }
| EType GetType | ( | ) | const [inline] |
| EDirection GetDirection | ( | ) | const [inline] |
| FbxProperty& GetSrc | ( | ) | const [inline] |
Definition at line 1733 of file fbxobject.h.
{ return mSrc->IsRoot() ? FbxCast<T>(mSrc->GetFbxObject()) : (T*)0; }
| FbxProperty& GetDst | ( | ) | const [inline] |
Definition at line 1734 of file fbxobject.h.
{ return mDst->IsRoot() ? FbxCast<T>(mDst->GetFbxObject()) : (T*)0; }
| T* GetSrcIfObject | ( | ) | const [inline] |
| T* GetDstIfObject | ( | ) | const [inline] |