Data used to communicate information between an application and the plug-in.
Definition at line 62 of file fbxplugin.h.
#include <fbxplugin.h>
Public Member Functions | |
| FbxPluginData () | |
| Constructor. | |
| FbxPluginData (const FbxPluginData &pOther) | |
| Copy Constructor. | |
Public Attributes | |
| FbxEmitter * | mQueryEmitter |
| The emitter on which the plug-in can listen to receive events. | |
| FbxManager * | mSDKManager |
| The FBX SDK Manager on which the plug-in was instanced. | |
| FbxPluginContainer * | mPluginContainer |
| The container which will have the ownership of the plug-in. | |
| FbxPluginData | ( | ) | [inline] |
Constructor.
Definition at line 65 of file fbxplugin.h.
:
mQueryEmitter(NULL),
mSDKManager(NULL),
mPluginContainer(NULL)
{
}
| FbxPluginData | ( | const FbxPluginData & | pOther | ) | [inline, explicit] |
Copy Constructor.
Definition at line 73 of file fbxplugin.h.
:
mQueryEmitter(pOther.mQueryEmitter),
mSDKManager(pOther.mSDKManager),
mPluginContainer(pOther.mPluginContainer)
{
}
The emitter on which the plug-in can listen to receive events.
Definition at line 80 of file fbxplugin.h.
The FBX SDK Manager on which the plug-in was instanced.
Definition at line 81 of file fbxplugin.h.
The container which will have the ownership of the plug-in.
Definition at line 82 of file fbxplugin.h.