FBX SDK event base class.
An event is something that is emitted by an emitter, with the goal of being filled by the listener that listen to it. You can see that like a form that you send to some people. If those people know how to fill the form, they fill it and return it to you with the right information in it. FBX object could be used as emitter, since KFbxObject is derived from KFbxEmitter. Meanwhile, plug-in could be used as listener, since KFbxPlugin is derived from KFbxListener. The derived class of KFbxEventBase contains a type ID to distinguish different types of events. FBX object can emit different types of FBX events at different conditions.
Definition at line 69 of file kfbxevents.h.
#include <kfbxevents.h>
Public Member Functions |
|
virtual int | GetTypeId () const =0 |
Retrieve the event type ID. |
|
virtual const char * | GetEventName () const =0 |
Force events to give us a name. |
|
Static Protected Member Functions |
|
static int | GetStaticTypeId (char const *) |
Constructor and Destructor |
|
virtual | ~KFbxEventBase () |
Destructor. |
virtual ~KFbxEventBase | ( | ) | [virtual] |
Destructor.
virtual int GetTypeId | ( | ) | const [pure virtual] |
Retrieve the event type ID.
Implemented in KFbxEvent< EventT >, KFbxEvent< KFbxQueryEvent< QueryT > >, and KFbxEvent< KFbxObjectPropertyChanged >.
virtual const char* GetEventName | ( | ) | const [pure virtual] |
static int GetStaticTypeId | ( | char const * | ) | [static, protected] |