Curve node event class.
Definition at line 259 of file kfcurvenode.h.
#include <kfcurvenode.h>

Public Member Functions |
|
| void | Clear () |
| Clear the curve node event object. |
|
| void | Add (int pWhat) |
| Add an event of type pWhat. |
|
| void | SetData (void *pData) |
Public Attributes |
|
| int | mEventCount |
| Nature (s) of this node event. |
|
| void * | mData |
| Data. |
|
| void Clear | ( | ) | [inline] |
Clear the curve node event object.
Definition at line 274 of file kfcurvenode.h.
{
mType=KFCURVENODEEVENT_NONE;
mEventCount = 0;
mData = NULL;
}
| void Add | ( | int | pWhat | ) | [inline] |
Add an event of type pWhat.
| pWhat | Use EKFCurveNodeEventType to identify what pWhat means. |
Definition at line 284 of file kfcurvenode.h.
{
mType |= pWhat;
mEventCount++;
}
| void SetData | ( | void * | pData | ) | [inline] |
| int mEventCount |
Nature (s) of this node event.
It is a bit field. Value defined in the enum stated before the class can composited. stored in mType Event count.
Definition at line 268 of file kfcurvenode.h.
| void* mData |